home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / objc-parse.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  193KB  |  4,913 lines

  1.  
  2. /*  A Bison parser, made from objc-parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    STRUCT    268
  18. #define    UNION    269
  19. #define    IF    270
  20. #define    ELSE    271
  21. #define    WHILE    272
  22. #define    DO    273
  23. #define    FOR    274
  24. #define    SWITCH    275
  25. #define    CASE    276
  26. #define    DEFAULT    277
  27. #define    BREAK    278
  28. #define    CONTINUE    279
  29. #define    RETURN    280
  30. #define    GOTO    281
  31. #define    ASM_KEYWORD    282
  32. #define    TYPEOF    283
  33. #define    ALIGNOF    284
  34. #define    ATTRIBUTE    285
  35. #define    EXTENSION    286
  36. #define    LABEL    287
  37. #define    REALPART    288
  38. #define    IMAGPART    289
  39. #define    ASSIGN    290
  40. #define    OROR    291
  41. #define    ANDAND    292
  42. #define    EQCOMPARE    293
  43. #define    ARITHCOMPARE    294
  44. #define    LSHIFT    295
  45. #define    RSHIFT    296
  46. #define    UNARY    297
  47. #define    PLUSPLUS    298
  48. #define    MINUSMINUS    299
  49. #define    HYPERUNARY    300
  50. #define    POINTSAT    301
  51. #define    INTERFACE    302
  52. #define    IMPLEMENTATION    303
  53. #define    END    304
  54. #define    SELECTOR    305
  55. #define    DEFS    306
  56. #define    ENCODE    307
  57. #define    CLASSNAME    308
  58. #define    PUBLIC    309
  59. #define    PRIVATE    310
  60. #define    PROTECTED    311
  61. #define    PROTOCOL    312
  62. #define    OBJECTNAME    313
  63. #define    CLASS    314
  64. #define    ALIAS    315
  65. #define    OBJC_STRING    316
  66.  
  67. #line 32 "objc-parse.y"
  68.  
  69. #include <stdio.h>
  70. #include <errno.h>
  71. #include <setjmp.h>
  72.  
  73. #include "config.h"
  74. #include "tree.h"
  75. #include "input.h"
  76. #include "c-lex.h"
  77. #include "c-tree.h"
  78. #include "flags.h"
  79.  
  80. #ifdef MULTIBYTE_CHARS
  81. #include <stdlib.h>
  82. #include <locale.h>
  83. #endif
  84.  
  85. #include "objc-act.h"
  86.  
  87. /* Since parsers are distinct for each language, put the language string
  88.    definition here.  */
  89. char *language_string = "GNU Obj-C";
  90.  
  91. #ifndef errno
  92. extern int errno;
  93. #endif
  94.  
  95. void yyerror ();
  96.  
  97. /* Like YYERROR but do call yyerror.  */
  98. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  99.  
  100. /* Cause the `yydebug' variable to be defined.  */
  101. #define YYDEBUG 1
  102.  
  103. #line 70 "objc-parse.y"
  104. typedef union {long itype; tree ttype; enum tree_code code;
  105.     char *filename; int lineno; } YYSTYPE;
  106. #line 192 "objc-parse.y"
  107.  
  108. /* Number of statements (loosely speaking) seen so far.  */
  109. static int stmt_count;
  110.  
  111. /* Input file and line number of the end of the body of last simple_if;
  112.    used by the stmt-rule immediately after simple_if returns.  */
  113. static char *if_stmt_file;
  114. static int if_stmt_line;
  115.  
  116. /* List of types and structure classes of the current declaration.  */
  117. static tree current_declspecs;
  118. static tree prefix_attributes = NULL_TREE;
  119.  
  120. /* Stack of saved values of current_declspecs and prefix_attributes.  */
  121. static tree declspec_stack;
  122.  
  123. /* 1 if we explained undeclared var errors.  */
  124. static int undeclared_variable_notice;
  125.  
  126. /* Objective-C specific information */
  127.  
  128. tree objc_interface_context;
  129. tree objc_implementation_context;
  130. tree objc_method_context;
  131. tree objc_ivar_chain;
  132. tree objc_ivar_context;
  133. enum tree_code objc_inherit_code;
  134. int objc_receiver_context;
  135. int objc_public_flag;
  136.  
  137.  
  138. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  139.  
  140. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  141. extern void yyprint ();
  142.  
  143. #ifndef YYLTYPE
  144. typedef
  145.   struct yyltype
  146.     {
  147.       int timestamp;
  148.       int first_line;
  149.       int first_column;
  150.       int last_line;
  151.       int last_column;
  152.       char *text;
  153.    }
  154.   yyltype;
  155.  
  156. #define YYLTYPE yyltype
  157. #endif
  158.  
  159. #include <stdio.h>
  160.  
  161. #ifndef __cplusplus
  162. #ifndef __STDC__
  163. #define const
  164. #endif
  165. #endif
  166.  
  167.  
  168.  
  169. #define    YYFINAL        914
  170. #define    YYFLAG        -32768
  171. #define    YYNTBASE    84
  172.  
  173. #define YYTRANSLATE(x) ((unsigned)(x) <= 316 ? yytranslate[x] : 293)
  174.  
  175. static const char yytranslate[] = {     0,
  176.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  178.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  179.      2,     2,    80,     2,     2,     2,    52,    43,     2,    59,
  180.     76,    50,    48,    81,    49,    58,    51,     2,     2,     2,
  181.      2,     2,     2,     2,     2,     2,     2,    38,    77,     2,
  182.     36,     2,    37,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  185.     60,     2,    83,    42,     2,     2,     2,     2,     2,     2,
  186.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  187.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  188.      2,     2,    82,    41,    78,    79,     2,     2,     2,     2,
  189.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  190.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  191.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  192.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  193.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  194.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  195.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  196.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  197.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  198.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  199.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  200.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  201.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  202.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  203.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  204.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  205.     39,    40,    44,    45,    46,    47,    53,    54,    55,    56,
  206.     57,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  207.     70,    71,    72,    73,    74,    75
  208. };
  209.  
  210. #if YYDEBUG != 0
  211. static const short yyprhs[] = {     0,
  212.      0,     1,     3,     4,     7,     8,    12,    14,    16,    18,
  213.     24,    28,    33,    38,    41,    44,    47,    50,    52,    53,
  214.     54,    62,    67,    68,    69,    77,    82,    83,    84,    91,
  215.     95,    97,    99,   101,   103,   105,   107,   109,   111,   113,
  216.    115,   117,   119,   120,   122,   124,   128,   130,   133,   134,
  217.    138,   141,   144,   147,   152,   155,   160,   163,   166,   168,
  218.    173,   174,   182,   184,   188,   192,   196,   200,   204,   208,
  219.    212,   216,   220,   224,   228,   232,   236,   240,   246,   250,
  220.    254,   256,   258,   260,   264,   268,   269,   274,   279,   284,
  221.    288,   292,   295,   298,   300,   302,   304,   306,   308,   310,
  222.    313,   315,   318,   319,   321,   324,   328,   330,   332,   335,
  223.    338,   343,   348,   351,   354,   358,   360,   362,   365,   368,
  224.    369,   370,   375,   380,   384,   388,   391,   394,   397,   401,
  225.    402,   405,   408,   410,   412,   415,   418,   421,   425,   426,
  226.    429,   431,   433,   435,   438,   441,   446,   451,   453,   455,
  227.    457,   459,   463,   465,   469,   470,   475,   476,   483,   487,
  228.    488,   495,   499,   500,   502,   504,   507,   514,   516,   520,
  229.    521,   523,   528,   535,   540,   542,   544,   546,   548,   550,
  230.    551,   556,   558,   559,   562,   564,   568,   570,   571,   576,
  231.    578,   579,   584,   585,   591,   592,   593,   599,   600,   601,
  232.    607,   609,   611,   615,   619,   624,   628,   632,   636,   638,
  233.    640,   644,   649,   653,   657,   661,   663,   667,   671,   675,
  234.    680,   684,   688,   690,   691,   699,   705,   708,   709,   717,
  235.    723,   726,   727,   736,   737,   745,   748,   749,   751,   752,
  236.    754,   756,   759,   760,   764,   767,   772,   776,   778,   782,
  237.    784,   786,   788,   792,   797,   804,   810,   812,   816,   818,
  238.    820,   824,   827,   830,   831,   833,   835,   838,   839,   842,
  239.    846,   850,   853,   857,   862,   866,   869,   873,   876,   880,
  240.    882,   885,   888,   889,   891,   894,   895,   896,   898,   900,
  241.    903,   907,   909,   912,   915,   922,   928,   934,   937,   940,
  242.    945,   946,   951,   952,   953,   957,   962,   966,   968,   970,
  243.    972,   974,   977,   978,   983,   985,   989,   990,   991,   999,
  244.   1005,  1008,  1009,  1010,  1011,  1024,  1025,  1032,  1035,  1038,
  245.   1041,  1045,  1052,  1061,  1072,  1085,  1089,  1094,  1096,  1098,
  246.   1099,  1106,  1110,  1116,  1119,  1122,  1123,  1125,  1126,  1128,
  247.   1129,  1131,  1133,  1137,  1142,  1144,  1148,  1149,  1152,  1155,
  248.   1156,  1161,  1164,  1165,  1167,  1169,  1173,  1175,  1179,  1184,
  249.   1189,  1194,  1199,  1204,  1205,  1208,  1210,  1213,  1215,  1219,
  250.   1221,  1225,  1227,  1229,  1231,  1233,  1235,  1237,  1239,  1243,
  251.   1247,  1252,  1253,  1254,  1265,  1266,  1273,  1274,  1275,  1288,
  252.   1289,  1298,  1299,  1306,  1309,  1310,  1319,  1324,  1325,  1335,
  253.   1341,  1342,  1349,  1350,  1354,  1358,  1360,  1362,  1364,  1366,
  254.   1367,  1371,  1374,  1378,  1382,  1384,  1385,  1387,  1391,  1393,
  255.   1397,  1400,  1401,  1402,  1403,  1411,  1412,  1413,  1414,  1422,
  256.   1423,  1424,  1427,  1429,  1431,  1434,  1435,  1439,  1441,  1443,
  257.   1444,  1445,  1451,  1452,  1453,  1459,  1464,  1466,  1472,  1475,
  258.   1476,  1479,  1480,  1482,  1484,  1486,  1489,  1492,  1497,  1500,
  259.   1503,  1505,  1509,  1512,  1515,  1518,  1519,  1522,  1523,  1527,
  260.   1529,  1531,  1534,  1536,  1538,  1540,  1542,  1544,  1546,  1548,
  261.   1550,  1552,  1554,  1556,  1558,  1560,  1562,  1564,  1566,  1568,
  262.   1570,  1572,  1574,  1576,  1578,  1580,  1582,  1584,  1591,  1595,
  263.   1601,  1604,  1606,  1608,  1610,  1613,  1615,  1619,  1622,  1624,
  264.   1626,  1627,  1628,  1635,  1637,  1639,  1641,  1644,  1647,  1649,
  265.   1654,  1659
  266. };
  267.  
  268. static const short yyrhs[] = {    -1,
  269.     85,     0,     0,    86,    88,     0,     0,    85,    87,    88,
  270.      0,    90,     0,    89,     0,   225,     0,    27,    59,    99,
  271.     76,    77,     0,   117,   128,    77,     0,   122,   117,   128,
  272.     77,     0,   120,   117,   127,    77,     0,   122,    77,     0,
  273.    120,    77,     0,     1,    77,     0,     1,    78,     0,    77,
  274.      0,     0,     0,   120,   117,   154,    91,   111,    92,   184,
  275.      0,   120,   117,   154,     1,     0,     0,     0,   122,   117,
  276.    157,    93,   111,    94,   184,     0,   122,   117,   157,     1,
  277.      0,     0,     0,   117,   157,    95,   111,    96,   184,     0,
  278.    117,   157,     1,     0,     3,     0,     4,     0,    72,     0,
  279.     67,     0,    43,     0,    49,     0,    48,     0,    54,     0,
  280.     55,     0,    79,     0,    80,     0,   101,     0,     0,   101,
  281.      0,   106,     0,   101,    81,   106,     0,   107,     0,    50,
  282.    104,     0,     0,    31,   103,   104,     0,    98,   104,     0,
  283.     40,    97,     0,    11,   102,     0,    11,    59,   172,    76,
  284.      0,    29,   102,     0,    29,    59,   172,    76,     0,    33,
  285.    104,     0,    34,   104,     0,   102,     0,    59,   172,    76,
  286.    104,     0,     0,    59,   172,    76,    82,   105,   142,    78,
  287.      0,   104,     0,   106,    48,   106,     0,   106,    49,   106,
  288.      0,   106,    50,   106,     0,   106,    51,   106,     0,   106,
  289.     52,   106,     0,   106,    46,   106,     0,   106,    47,   106,
  290.      0,   106,    45,   106,     0,   106,    44,   106,     0,   106,
  291.     43,   106,     0,   106,    41,   106,     0,   106,    42,   106,
  292.      0,   106,    40,   106,     0,   106,    39,   106,     0,   106,
  293.     37,   208,    38,   106,     0,   106,    36,   106,     0,   106,
  294.     35,   106,     0,     3,     0,     8,     0,   109,     0,    59,
  295.     99,    76,     0,    59,     1,    76,     0,     0,    59,   108,
  296.    185,    76,     0,   107,    59,   100,    76,     0,   107,    60,
  297.     99,    83,     0,   107,    58,    97,     0,   107,    57,    97,
  298.      0,   107,    54,     0,   107,    55,     0,   284,     0,   290,
  299.      0,   291,     0,   292,     0,   110,     0,     9,     0,   109,
  300.      9,     0,    75,     0,   110,    75,     0,     0,   113,     0,
  301.    113,    10,     0,   190,   191,   114,     0,   112,     0,   179,
  302.      0,   113,   112,     0,   112,   179,     0,   120,   117,   127,
  303.     77,     0,   122,   117,   128,    77,     0,   120,    77,     0,
  304.    122,    77,     0,   190,   191,   119,     0,   115,     0,   179,
  305.      0,   116,   115,     0,   115,   179,     0,     0,     0,   120,
  306.    117,   127,    77,     0,   122,   117,   128,    77,     0,   120,
  307.    117,   148,     0,   122,   117,   151,     0,   120,    77,     0,
  308.    122,    77,     0,   125,   121,     0,   122,   125,   121,     0,
  309.      0,   121,   126,     0,   121,     5,     0,     7,     0,     5,
  310.      0,   122,     7,     0,   122,     5,     0,   125,   124,     0,
  311.    174,   125,   124,     0,     0,   124,   126,     0,     6,     0,
  312.    158,     0,     4,     0,    67,   241,     0,    72,   241,     0,
  313.     28,    59,    99,    76,     0,    28,    59,   172,    76,     0,
  314.      6,     0,     7,     0,   158,     0,   130,     0,   127,    81,
  315.    130,     0,   132,     0,   128,    81,   130,     0,     0,    27,
  316.     59,   109,    76,     0,     0,   154,   129,   134,    36,   131,
  317.    140,     0,   154,   129,   134,     0,     0,   157,   129,   134,
  318.     36,   133,   140,     0,   157,   129,   134,     0,     0,   135,
  319.      0,   136,     0,   135,   136,     0,    30,    59,    59,   137,
  320.     76,    76,     0,   138,     0,   137,    81,   138,     0,     0,
  321.    139,     0,   139,    59,     3,    76,     0,   139,    59,     3,
  322.     81,   101,    76,     0,   139,    59,   100,    76,     0,    97,
  323.      0,     5,     0,     6,     0,     7,     0,   106,     0,     0,
  324.     82,   141,   142,    78,     0,     1,     0,     0,   143,   163,
  325.      0,   144,     0,   143,    81,   144,     0,   106,     0,     0,
  326.     82,   145,   142,    78,     0,     1,     0,     0,    97,    38,
  327.    146,   144,     0,     0,    58,    97,    36,   147,   144,     0,
  328.      0,     0,   154,   149,   111,   150,   185,     0,     0,     0,
  329.    157,   152,   111,   153,   185,     0,   155,     0,   157,     0,
  330.     59,   155,    76,     0,   155,    59,   220,     0,   155,    60,
  331.     99,    83,     0,   155,    60,    83,     0,    50,   175,   155,
  332.      0,   135,   118,   155,     0,     4,     0,    72,     0,   156,
  333.     59,   220,     0,   156,    60,    99,    83,     0,   156,    60,
  334.     83,     0,    50,   175,   156,     0,   135,   118,   156,     0,
  335.      4,     0,   157,    59,   220,     0,    59,   157,    76,     0,
  336.     50,   175,   157,     0,   157,    60,    99,    83,     0,   157,
  337.     60,    83,     0,   135,   118,   157,     0,     3,     0,     0,
  338.     13,    97,    82,   159,   165,    78,   134,     0,    13,    82,
  339.    165,    78,   134,     0,    13,    97,     0,     0,    14,    97,
  340.     82,   160,   165,    78,   134,     0,    14,    82,   165,    78,
  341.    134,     0,    14,    97,     0,     0,    12,    97,    82,   161,
  342.    170,   164,    78,   134,     0,     0,    12,    82,   162,   170,
  343.    164,    78,   134,     0,    12,    97,     0,     0,    81,     0,
  344.      0,    81,     0,   166,     0,   166,   167,     0,     0,   166,
  345.    167,    77,     0,   166,    77,     0,    65,    59,    67,    76,
  346.      0,   123,   117,   168,     0,   123,     0,   174,   117,   168,
  347.      0,   174,     0,     1,     0,   169,     0,   168,    81,   169,
  348.      0,   190,   191,   154,   134,     0,   190,   191,   154,    38,
  349.    106,   134,     0,   190,   191,    38,   106,   134,     0,   171,
  350.      0,   170,    81,   171,     0,     1,     0,    97,     0,    97,
  351.     36,   106,     0,   123,   173,     0,   174,   173,     0,     0,
  352.    176,     0,     7,     0,   174,     7,     0,     0,   175,     7,
  353.      0,    59,   176,    76,     0,    50,   175,   176,     0,    50,
  354.    175,     0,   176,    59,   213,     0,   176,    60,    99,    83,
  355.      0,   176,    60,    83,     0,    59,   213,     0,    60,    99,
  356.     83,     0,    60,    83,     0,   135,   118,   176,     0,   193,
  357.      0,   177,   193,     0,   177,   179,     0,     0,   177,     0,
  358.      1,    77,     0,     0,     0,   182,     0,   183,     0,   182,
  359.    183,     0,    32,   224,    77,     0,   185,     0,     1,   185,
  360.      0,    82,    78,     0,    82,   180,   181,   116,   178,    78,
  361.      0,    82,   180,   181,     1,    78,     0,    82,   180,   181,
  362.    177,    78,     0,   187,   192,     0,   187,     1,     0,    15,
  363.     59,    99,    76,     0,     0,    18,   189,   192,    17,     0,
  364.      0,     0,   190,   191,   195,     0,   190,   191,   206,   192,
  365.      0,   190,   191,   194,     0,   195,     0,   206,     0,   185,
  366.      0,   203,     0,    99,    77,     0,     0,   186,    16,   196,
  367.    192,     0,   186,     0,   186,    16,     1,     0,     0,     0,
  368.     17,   197,    59,    99,    76,   198,   192,     0,   188,    59,
  369.     99,    76,    77,     0,   188,     1,     0,     0,     0,     0,
  370.     19,    59,   208,    77,   199,   208,    77,   200,   208,    76,
  371.    201,   192,     0,     0,    20,    59,    99,    76,   202,   192,
  372.      0,    23,    77,     0,    24,    77,     0,    25,    77,     0,
  373.     25,    99,    77,     0,    27,   207,    59,    99,    76,    77,
  374.      0,    27,   207,    59,    99,    38,   209,    76,    77,     0,
  375.     27,   207,    59,    99,    38,   209,    38,   209,    76,    77,
  376.      0,    27,   207,    59,    99,    38,   209,    38,   209,    38,
  377.    212,    76,    77,     0,    26,    97,    77,     0,    26,    50,
  378.     99,    77,     0,    77,     0,   204,     0,     0,    19,    59,
  379.    107,    76,   205,   192,     0,    21,   106,    38,     0,    21,
  380.    106,    10,   106,    38,     0,    22,    38,     0,    97,    38,
  381.      0,     0,     7,     0,     0,    99,     0,     0,   210,     0,
  382.    211,     0,   210,    81,   211,     0,     9,    59,    99,    76,
  383.      0,   109,     0,   212,    81,   109,     0,     0,   214,   215,
  384.      0,   217,    76,     0,     0,   218,    77,   216,   215,     0,
  385.      1,    76,     0,     0,    10,     0,   218,     0,   218,    81,
  386.     10,     0,   219,     0,   218,    81,   219,     0,   120,   117,
  387.    156,   134,     0,   120,   117,   157,   134,     0,   120,   117,
  388.    173,   134,     0,   122,   117,   157,   134,     0,   122,   117,
  389.    173,   134,     0,     0,   221,   222,     0,   215,     0,   223,
  390.     76,     0,     3,     0,   223,    81,     3,     0,    97,     0,
  391.    224,    81,    97,     0,   229,     0,   227,     0,   228,     0,
  392.    239,     0,   248,     0,    63,     0,    97,     0,   226,    81,
  393.     97,     0,    73,   226,    77,     0,    74,    97,    97,    77,
  394.      0,     0,     0,    61,    97,   241,    82,   230,   242,    78,
  395.    231,   255,    63,     0,     0,    61,    97,   241,   232,   255,
  396.     63,     0,     0,     0,    61,    97,    38,    97,   241,    82,
  397.    233,   242,    78,   234,   255,    63,     0,     0,    61,    97,
  398.     38,    97,   241,   235,   255,    63,     0,     0,    62,    97,
  399.     82,   236,   242,    78,     0,    62,    97,     0,     0,    62,
  400.     97,    38,    97,    82,   237,   242,    78,     0,    62,    97,
  401.     38,    97,     0,     0,    61,    97,    59,    97,    76,   241,
  402.    238,   255,    63,     0,    62,    97,    59,    97,    76,     0,
  403.      0,    71,    97,   241,   240,   255,    63,     0,     0,    45,
  404.    226,    45,     0,   242,   243,   244,     0,   244,     0,    69,
  405.      0,    70,     0,    68,     0,     0,   244,   245,    77,     0,
  406.    244,    77,     0,   123,   117,   246,     0,   174,   117,   246,
  407.      0,     1,     0,     0,   247,     0,   246,    81,   247,     0,
  408.    154,     0,   154,    38,   106,     0,    38,   106,     0,     0,
  409.      0,     0,    48,   249,   265,   250,   266,   251,   184,     0,
  410.      0,     0,     0,    49,   252,   265,   253,   266,   254,   184,
  411.      0,     0,     0,   256,   257,     0,   260,     0,    89,     0,
  412.    257,   260,     0,     0,   257,   258,    89,     0,    77,     0,
  413.      1,     0,     0,     0,    48,   261,   265,   262,   259,     0,
  414.      0,     0,    49,   263,   265,   264,   259,     0,    59,   172,
  415.     76,   274,     0,   274,     0,    59,   172,    76,   275,   272,
  416.      0,   275,   272,     0,     0,    77,   267,     0,     0,   268,
  417.      0,   269,     0,   179,     0,   268,   269,     0,   269,   179,
  418.      0,   120,   117,   270,    77,     0,   120,    77,     0,   122,
  419.     77,     0,   271,     0,   270,    81,   271,     0,   156,   134,
  420.      0,   157,   134,     0,   173,   134,     0,     0,    81,    10,
  421.      0,     0,    81,   273,   217,     0,   276,     0,   278,     0,
  422.    275,   278,     0,     3,     0,     4,     0,    72,     0,   277,
  423.      0,    12,     0,    13,     0,    14,     0,    15,     0,    16,
  424.      0,    17,     0,    18,     0,    19,     0,    20,     0,    21,
  425.      0,    22,     0,    23,     0,    24,     0,    25,     0,    26,
  426.      0,    27,     0,    11,     0,    28,     0,    29,     0,     6,
  427.      0,     7,     0,   276,    38,    59,   172,    76,    97,     0,
  428.    276,    38,    97,     0,    38,    59,   172,    76,    97,     0,
  429.     38,    97,     0,   276,     0,   280,     0,   282,     0,   280,
  430.    282,     0,   101,     0,   276,    38,   281,     0,    38,   281,
  431.      0,    99,     0,    67,     0,     0,     0,    60,   285,   283,
  432.    286,   279,    83,     0,   276,     0,   288,     0,   289,     0,
  433.    288,   289,     0,   276,    38,     0,    38,     0,    64,    59,
  434.    287,    76,     0,    71,    59,    97,    76,     0,    66,    59,
  435.    172,    76,     0
  436. };
  437.  
  438. #endif
  439.  
  440. #if YYDEBUG != 0
  441. static const short yyrline[] = { 0,
  442.    230,   235,   249,   251,   251,   252,   254,   256,   257,   258,
  443.    268,   279,   284,   289,   291,   293,   294,   295,   300,   307,
  444.    309,   314,   319,   325,   327,   332,   337,   343,   345,   350,
  445.    357,   359,   360,   361,   364,   366,   368,   370,   372,   374,
  446.    376,   380,   384,   387,   390,   393,   397,   399,   402,   405,
  447.    408,   412,   440,   445,   447,   449,   451,   453,   457,   459,
  448.    462,   466,   493,   495,   497,   499,   501,   503,   505,   507,
  449.    509,   511,   513,   515,   517,   519,   521,   523,   525,   528,
  450.    534,   694,   695,   697,   703,   705,   719,   742,   744,   746,
  451.    758,   772,   774,   776,   778,   780,   782,   784,   789,   791,
  452.    797,   799,   803,   805,   806,   816,   821,   823,   824,   825,
  453.    828,   834,   839,   842,   850,   855,   857,   858,   859,   866,
  454.    876,   880,   886,   891,   896,   901,   903,   911,   914,   918,
  455.    920,   922,   933,   937,   939,   942,   955,   958,   962,   964,
  456.    972,   973,   974,   978,   980,   982,   984,   990,   991,   992,
  457.    995,   997,  1000,  1002,  1005,  1008,  1014,  1021,  1023,  1030,
  458.   1037,  1040,  1047,  1050,  1054,  1057,  1061,  1066,  1069,  1073,
  459.   1076,  1078,  1080,  1082,  1089,  1091,  1092,  1093,  1098,  1100,
  460.   1105,  1113,  1118,  1122,  1125,  1127,  1132,  1135,  1137,  1139,
  461.   1143,  1146,  1146,  1149,  1151,  1162,  1170,  1174,  1185,  1193,
  462.   1200,  1202,  1207,  1210,  1215,  1217,  1219,  1221,  1223,  1224,
  463.   1232,  1238,  1240,  1242,  1244,  1246,  1252,  1258,  1260,  1262,
  464.   1264,  1266,  1268,  1271,  1276,  1278,  1282,  1284,  1286,  1288,
  465.   1292,  1294,  1297,  1300,  1303,  1306,  1310,  1312,  1315,  1317,
  466.   1321,  1324,  1329,  1331,  1333,  1337,  1361,  1368,  1373,  1379,
  467.   1384,  1388,  1390,  1394,  1398,  1402,  1412,  1414,  1416,  1421,
  468.   1424,  1428,  1431,  1435,  1438,  1441,  1444,  1448,  1451,  1455,
  469.   1459,  1461,  1463,  1465,  1467,  1469,  1471,  1473,  1475,  1483,
  470.   1485,  1486,  1489,  1491,  1494,  1497,  1510,  1512,  1517,  1519,
  471.   1522,  1536,  1539,  1542,  1544,  1552,  1560,  1571,  1576,  1579,
  472.   1592,  1600,  1604,  1608,  1612,  1618,  1622,  1627,  1629,  1640,
  473.   1643,  1644,  1661,  1666,  1669,  1681,  1683,  1693,  1703,  1704,
  474.   1712,  1715,  1727,  1731,  1748,  1758,  1767,  1772,  1777,  1782,
  475.   1786,  1790,  1801,  1808,  1815,  1822,  1833,  1837,  1840,  1845,
  476.   1868,  1902,  1927,  1956,  1971,  1982,  1986,  1990,  1993,  1998,
  477.   2000,  2003,  2005,  2009,  2014,  2017,  2023,  2028,  2033,  2035,
  478.   2044,  2045,  2051,  2053,  2063,  2065,  2069,  2072,  2078,  2088,
  479.   2097,  2106,  2116,  2130,  2135,  2140,  2142,  2151,  2154,  2159,
  480.   2162,  2168,  2170,  2171,  2172,  2173,  2174,  2188,  2191,  2195,
  481.   2201,  2207,  2214,  2219,  2225,  2232,  2238,  2244,  2249,  2255,
  482.   2262,  2268,  2274,  2280,  2288,  2294,  2300,  2308,  2315,  2321,
  483.   2330,  2337,  2345,  2350,  2359,  2361,  2364,  2366,  2367,  2370,
  484.   2375,  2376,  2393,  2400,  2406,  2410,  2413,  2414,  2417,  2425,
  485.   2431,  2440,  2450,  2457,  2461,  2466,  2475,  2482,  2486,  2496,
  486.   2498,  2499,  2501,  2503,  2504,  2505,  2506,  2508,  2510,  2513,
  487.   2519,  2524,  2524,  2529,  2533,  2535,  2541,  2546,  2551,  2560,
  488.   2562,  2568,  2570,  2573,  2575,  2576,  2577,  2580,  2586,  2588,
  489.   2592,  2595,  2602,  2608,  2613,  2620,  2625,  2630,  2635,  2642,
  490.   2646,  2649,  2655,  2657,  2658,  2659,  2662,  2664,  2665,  2666,
  491.   2667,  2668,  2669,  2670,  2671,  2672,  2673,  2674,  2675,  2676,
  492.   2677,  2678,  2679,  2680,  2681,  2682,  2682,  2685,  2691,  2696,
  493.   2701,  2707,  2709,  2712,  2714,  2721,  2733,  2738,  2744,  2746,
  494.   2752,  2756,  2757,  2763,  2765,  2768,  2770,  2776,  2781,  2787,
  495.   2794,  2803
  496. };
  497.  
  498. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  499. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  500. "ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
  501. "BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
  502. "EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'","OROR",
  503. "ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT","'+'",
  504. "'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
  505. "'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
  506. "CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
  507. "OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
  508. "@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
  509. "unop","expr","exprlist","nonnull_exprlist","unary_expr","@9","cast_expr","@10",
  510. "expr_no_commas","primary","@11","string","objc_string","xdecls","lineno_datadecl",
  511. "datadecls","datadecl","lineno_decl","decls","setspecs","setattrs","decl","typed_declspecs",
  512. "reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
  513. "typespecqual_reserved","initdecls","notype_initdecls","maybeasm","initdcl",
  514. "@12","notype_initdcl","@13","maybe_attribute","attributes","attribute","attribute_list",
  515. "attrib","any_word","init","@14","initlist_maybe_comma","initlist1","initelt",
  516. "@15","@16","@17","nested_function","@18","@19","notype_nested_function","@20",
  517. "@21","declarator","after_type_declarator","parm_declarator","notype_declarator",
  518. "structsp","@22","@23","@24","@25","maybecomma","maybecomma_warn","component_decl_list",
  519. "component_decl_list2","component_decl","components","component_declarator",
  520. "enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
  521. "absdcl1","stmts","xstmts","errstmt","pushlevel","maybe_label_decls","label_decls",
  522. "label_decl","compstmt_or_error","compstmt","simple_if","if_prefix","do_stmt_start",
  523. "@26","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
  524. "stmt_or_label","stmt","@27","@28","@29","@30","@31","@32","@33","all_iter_stmt",
  525. "all_iter_stmt_simple","@34","label","maybe_type_qual","xexpr","asm_operands",
  526. "nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@35","parmlist_1",
  527. "@36","parmlist_2","parms","parm","parmlist_or_identifiers","@37","parmlist_or_identifiers_1",
  528. "identifiers","identifiers_or_typenames","objcdef","identifier_list","classdecl",
  529. "aliasdecl","classdef","@38","@39","@40","@41","@42","@43","@44","@45","@46",
  530. "protocoldef","@47","protocolrefs","ivar_decl_list","visibility_spec","ivar_decls",
  531. "ivar_decl","ivars","ivar_declarator","methoddef","@48","@49","@50","@51","@52",
  532. "@53","methodprotolist","@54","methodprotolist2","@55","semi_or_error","methodproto",
  533. "@56","@57","@58","@59","methoddecl","optarglist","myxdecls","mydecls","mydecl",
  534. "myparms","myparm","optparmlist","@60","unaryselector","keywordselector","selector",
  535. "reservedwords","keyworddecl","messageargs","keywordarglist","keywordexpr","keywordarg",
  536. "receiver","objcmessageexpr","@61","@62","selectorarg","keywordnamelist","keywordname",
  537. "objcselectorexpr","objcprotocolexpr","objcencodeexpr",""
  538. };
  539. #endif
  540.  
  541. static const short yyr1[] = {     0,
  542.     84,    84,    86,    85,    87,    85,    88,    88,    88,    88,
  543.     89,    89,    89,    89,    89,    89,    89,    89,    91,    92,
  544.     90,    90,    93,    94,    90,    90,    95,    96,    90,    90,
  545.     97,    97,    97,    97,    98,    98,    98,    98,    98,    98,
  546.     98,    99,   100,   100,   101,   101,   102,   102,   103,   102,
  547.    102,   102,   102,   102,   102,   102,   102,   102,   104,   104,
  548.    105,   104,   106,   106,   106,   106,   106,   106,   106,   106,
  549.    106,   106,   106,   106,   106,   106,   106,   106,   106,   106,
  550.    107,   107,   107,   107,   107,   108,   107,   107,   107,   107,
  551.    107,   107,   107,   107,   107,   107,   107,   107,   109,   109,
  552.    110,   110,   111,   111,   111,   112,   113,   113,   113,   113,
  553.    114,   114,   114,   114,   115,   116,   116,   116,   116,   117,
  554.    118,   119,   119,   119,   119,   119,   119,   120,   120,   121,
  555.    121,   121,   122,   122,   122,   122,   123,   123,   124,   124,
  556.    125,   125,   125,   125,   125,   125,   125,   126,   126,   126,
  557.    127,   127,   128,   128,   129,   129,   131,   130,   130,   133,
  558.    132,   132,   134,   134,   135,   135,   136,   137,   137,   138,
  559.    138,   138,   138,   138,   139,   139,   139,   139,   140,   141,
  560.    140,   140,   142,   142,   143,   143,   144,   145,   144,   144,
  561.    146,   144,   147,   144,   149,   150,   148,   152,   153,   151,
  562.    154,   154,   155,   155,   155,   155,   155,   155,   155,   155,
  563.    156,   156,   156,   156,   156,   156,   157,   157,   157,   157,
  564.    157,   157,   157,   159,   158,   158,   158,   160,   158,   158,
  565.    158,   161,   158,   162,   158,   158,   163,   163,   164,   164,
  566.    165,   165,   166,   166,   166,   166,   167,   167,   167,   167,
  567.    167,   168,   168,   169,   169,   169,   170,   170,   170,   171,
  568.    171,   172,   172,   173,   173,   174,   174,   175,   175,   176,
  569.    176,   176,   176,   176,   176,   176,   176,   176,   176,   177,
  570.    177,   177,   178,   178,   179,   180,   181,   181,   182,   182,
  571.    183,   184,   184,   185,   185,   185,   185,   186,   186,   187,
  572.    189,   188,   190,   191,   192,   192,   193,   194,   194,   195,
  573.    195,   195,   196,   195,   195,   195,   197,   198,   195,   195,
  574.    195,   199,   200,   201,   195,   202,   195,   195,   195,   195,
  575.    195,   195,   195,   195,   195,   195,   195,   195,   203,   205,
  576.    204,   206,   206,   206,   206,   207,   207,   208,   208,   209,
  577.    209,   210,   210,   211,   212,   212,   214,   213,   215,   216,
  578.    215,   215,   217,   217,   217,   217,   218,   218,   219,   219,
  579.    219,   219,   219,   221,   220,   222,   222,   223,   223,   224,
  580.    224,   225,   225,   225,   225,   225,   225,   226,   226,   227,
  581.    228,   230,   231,   229,   232,   229,   233,   234,   229,   235,
  582.    229,   236,   229,   229,   237,   229,   229,   238,   229,   229,
  583.    240,   239,   241,   241,   242,   242,   243,   243,   243,   244,
  584.    244,   244,   245,   245,   245,   246,   246,   246,   247,   247,
  585.    247,   249,   250,   251,   248,   252,   253,   254,   248,   255,
  586.    256,   255,   257,   257,   257,   258,   257,   259,   259,   261,
  587.    262,   260,   263,   264,   260,   265,   265,   265,   265,   266,
  588.    266,   267,   267,   268,   268,   268,   268,   269,   269,   269,
  589.    270,   270,   271,   271,   271,   272,   272,   273,   272,   274,
  590.    275,   275,   276,   276,   276,   276,   277,   277,   277,   277,
  591.    277,   277,   277,   277,   277,   277,   277,   277,   277,   277,
  592.    277,   277,   277,   277,   277,   277,   277,   278,   278,   278,
  593.    278,   279,   279,   280,   280,   281,   282,   282,   283,   283,
  594.    285,   286,   284,   287,   287,   288,   288,   289,   289,   290,
  595.    291,   292
  596. };
  597.  
  598. static const short yyr2[] = {     0,
  599.      0,     1,     0,     2,     0,     3,     1,     1,     1,     5,
  600.      3,     4,     4,     2,     2,     2,     2,     1,     0,     0,
  601.      7,     4,     0,     0,     7,     4,     0,     0,     6,     3,
  602.      1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  603.      1,     1,     0,     1,     1,     3,     1,     2,     0,     3,
  604.      2,     2,     2,     4,     2,     4,     2,     2,     1,     4,
  605.      0,     7,     1,     3,     3,     3,     3,     3,     3,     3,
  606.      3,     3,     3,     3,     3,     3,     3,     5,     3,     3,
  607.      1,     1,     1,     3,     3,     0,     4,     4,     4,     3,
  608.      3,     2,     2,     1,     1,     1,     1,     1,     1,     2,
  609.      1,     2,     0,     1,     2,     3,     1,     1,     2,     2,
  610.      4,     4,     2,     2,     3,     1,     1,     2,     2,     0,
  611.      0,     4,     4,     3,     3,     2,     2,     2,     3,     0,
  612.      2,     2,     1,     1,     2,     2,     2,     3,     0,     2,
  613.      1,     1,     1,     2,     2,     4,     4,     1,     1,     1,
  614.      1,     3,     1,     3,     0,     4,     0,     6,     3,     0,
  615.      6,     3,     0,     1,     1,     2,     6,     1,     3,     0,
  616.      1,     4,     6,     4,     1,     1,     1,     1,     1,     0,
  617.      4,     1,     0,     2,     1,     3,     1,     0,     4,     1,
  618.      0,     4,     0,     5,     0,     0,     5,     0,     0,     5,
  619.      1,     1,     3,     3,     4,     3,     3,     3,     1,     1,
  620.      3,     4,     3,     3,     3,     1,     3,     3,     3,     4,
  621.      3,     3,     1,     0,     7,     5,     2,     0,     7,     5,
  622.      2,     0,     8,     0,     7,     2,     0,     1,     0,     1,
  623.      1,     2,     0,     3,     2,     4,     3,     1,     3,     1,
  624.      1,     1,     3,     4,     6,     5,     1,     3,     1,     1,
  625.      3,     2,     2,     0,     1,     1,     2,     0,     2,     3,
  626.      3,     2,     3,     4,     3,     2,     3,     2,     3,     1,
  627.      2,     2,     0,     1,     2,     0,     0,     1,     1,     2,
  628.      3,     1,     2,     2,     6,     5,     5,     2,     2,     4,
  629.      0,     4,     0,     0,     3,     4,     3,     1,     1,     1,
  630.      1,     2,     0,     4,     1,     3,     0,     0,     7,     5,
  631.      2,     0,     0,     0,    12,     0,     6,     2,     2,     2,
  632.      3,     6,     8,    10,    12,     3,     4,     1,     1,     0,
  633.      6,     3,     5,     2,     2,     0,     1,     0,     1,     0,
  634.      1,     1,     3,     4,     1,     3,     0,     2,     2,     0,
  635.      4,     2,     0,     1,     1,     3,     1,     3,     4,     4,
  636.      4,     4,     4,     0,     2,     1,     2,     1,     3,     1,
  637.      3,     1,     1,     1,     1,     1,     1,     1,     3,     3,
  638.      4,     0,     0,    10,     0,     6,     0,     0,    12,     0,
  639.      8,     0,     6,     2,     0,     8,     4,     0,     9,     5,
  640.      0,     6,     0,     3,     3,     1,     1,     1,     1,     0,
  641.      3,     2,     3,     3,     1,     0,     1,     3,     1,     3,
  642.      2,     0,     0,     0,     7,     0,     0,     0,     7,     0,
  643.      0,     2,     1,     1,     2,     0,     3,     1,     1,     0,
  644.      0,     5,     0,     0,     5,     4,     1,     5,     2,     0,
  645.      2,     0,     1,     1,     1,     2,     2,     4,     2,     2,
  646.      1,     3,     2,     2,     2,     0,     2,     0,     3,     1,
  647.      1,     2,     1,     1,     1,     1,     1,     1,     1,     1,
  648.      1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  649.      1,     1,     1,     1,     1,     1,     1,     6,     3,     5,
  650.      2,     1,     1,     1,     2,     1,     3,     2,     1,     1,
  651.      0,     0,     6,     1,     1,     1,     2,     2,     1,     4,
  652.      4,     4
  653. };
  654.  
  655. static const short yydefact[] = {     3,
  656.      5,     0,     0,     0,   143,   134,   141,   133,     0,     0,
  657.      0,     0,     0,   432,   436,     0,     0,   387,   413,     0,
  658.    413,     0,     0,    18,     4,     8,     7,     0,   120,   120,
  659.    130,   142,     9,   383,   384,   382,   385,   386,     6,    16,
  660.     17,    31,    32,    34,    33,   234,   236,   243,   227,   243,
  661.    231,     0,     0,     0,     0,   413,   404,     0,   144,   413,
  662.    145,   388,     0,     0,   223,     0,   268,     0,     0,   153,
  663.    121,   165,     0,    15,     0,   136,   135,    14,     0,   130,
  664.    128,     0,   232,     0,     0,     0,   224,     0,   228,    81,
  665.     82,    99,     0,     0,    49,     0,     0,     0,    35,    37,
  666.     36,     0,    38,    39,     0,   521,     0,     0,     0,   101,
  667.     40,    41,     0,     0,    42,    59,    63,    45,    47,    83,
  668.     98,    94,    95,    96,    97,   266,     0,   264,   139,     0,
  669.    264,   483,   484,   506,   507,   503,   487,   488,   489,   490,
  670.    491,   492,   493,   494,   495,   496,   497,   498,   499,   500,
  671.    501,   502,   504,   505,     0,     0,   485,   433,   457,   476,
  672.    480,   486,   481,   437,     0,     0,   395,     0,     0,   402,
  673.      0,   411,   390,     0,     0,     0,     0,     0,    11,     0,
  674.      0,   166,    30,     0,   374,     0,     0,   163,   209,   268,
  675.      0,   210,     0,   151,   121,     0,   201,   202,     0,     0,
  676.    129,   132,   148,   149,   131,   150,   259,   260,   239,   257,
  677.      0,     0,   163,   251,   245,   120,   242,   120,   243,   163,
  678.    243,     0,    53,     0,    55,     0,    57,    58,    52,    48,
  679.      0,     0,     0,     0,     0,     0,     0,     0,    51,     0,
  680.      0,     0,     0,   348,     0,     0,     0,     0,     0,     0,
  681.      0,     0,     0,     0,     0,     0,     0,     0,    92,    93,
  682.      0,     0,    43,     0,   100,   102,   146,   268,   357,     0,
  683.    121,   262,   265,   137,   147,   267,   139,   263,     0,   511,
  684.      0,   460,   478,   459,     0,   482,     0,   460,   413,     0,
  685.    392,   441,   407,     0,   420,   414,   441,   389,   391,   170,
  686.    269,   219,   218,   154,   155,   222,     0,   217,     0,   221,
  687.      0,     0,    28,     0,   303,   108,   304,   162,   164,     0,
  688.      0,    13,     0,     0,    22,     0,   163,   374,     0,    12,
  689.     26,     0,     0,   240,     0,   239,     0,   226,   303,   244,
  690.    303,     0,   230,     0,     0,     0,    50,    85,    84,   286,
  691.      0,     0,   520,   519,   522,   529,   524,     0,   525,   526,
  692.      0,     0,    10,    46,    80,    79,   349,     0,    77,    76,
  693.     74,    75,    73,    72,    71,    69,    70,    64,    65,    66,
  694.     67,    68,    91,    90,     0,    44,     0,   272,     0,   276,
  695.      0,   278,     0,     0,   357,     0,   140,   138,     0,     0,
  696.      0,   434,   477,   363,     0,   509,   438,   400,   413,   420,
  697.      0,     0,   405,   410,     0,     0,     0,   176,   177,   178,
  698.    175,     0,   168,   171,     0,     0,   378,   364,   120,   120,
  699.    376,     0,   365,   367,   375,     0,   220,   285,     0,   110,
  700.    105,   109,     0,   160,   207,   203,   152,   208,    20,   159,
  701.    204,   206,     0,    24,   261,   258,   163,     0,   246,   247,
  702.    252,   304,   249,   163,   163,    54,    56,   294,   287,    87,
  703.     61,    60,     0,   528,   530,     0,   527,   532,   531,     0,
  704.     88,    89,   271,   270,   358,   277,   279,   273,   275,     0,
  705.      0,   456,   476,   120,     0,   465,   461,   463,     0,     0,
  706.    479,   365,     0,     0,   397,   441,   408,     0,   396,   450,
  707.    453,   444,     0,   120,   120,   446,   443,   420,   419,   417,
  708.    418,   403,   420,   425,   422,   120,   120,     0,   412,     0,
  709.    170,    43,   156,   362,   264,   264,   359,   360,     0,   377,
  710.      0,     0,    29,   292,   106,   120,   120,     0,     0,   157,
  711.    205,     0,   235,   163,   303,     0,   225,   229,     0,     0,
  712.    288,   289,     0,     0,   512,     0,   513,   514,    78,   274,
  713.    510,   458,   469,   264,   470,   466,   467,   435,     0,   439,
  714.    420,     0,   441,   393,     0,     0,   155,     0,     0,     0,
  715.    445,     0,     0,   426,   426,   421,   167,   169,    81,     0,
  716.    216,   268,   357,   121,   163,   163,   163,   268,   121,   163,
  717.    163,     0,   366,   368,   379,   293,   113,     0,   114,     0,
  718.    182,   180,   179,   161,    21,     0,    25,   233,   253,     0,
  719.    163,   380,     0,     0,     0,   303,     0,   117,   304,   280,
  720.    290,   190,    81,     0,   188,     0,   187,     0,   237,   185,
  721.    516,   518,     0,   523,     0,   515,   163,   163,   163,     0,
  722.    471,   508,     0,   401,     0,   441,   451,   454,   447,   406,
  723.      0,   429,   423,   427,   424,   172,     0,   174,   272,     0,
  724.    374,     0,   369,   370,   371,   272,     0,   372,   373,   361,
  725.      0,     0,     0,   158,   163,     0,   254,   291,     0,   296,
  726.    119,   118,     0,     0,   297,   282,   304,   281,     0,     0,
  727.      0,   191,    62,     0,   184,   517,   473,   474,   475,   468,
  728.    264,   398,   409,     0,     0,     0,   431,     0,     0,     0,
  729.    214,   215,   211,   213,     0,   111,   112,     0,   256,   163,
  730.    381,   295,     0,   143,     0,   317,   301,     0,     0,     0,
  731.      0,     0,     0,     0,     0,   346,   413,   413,   338,     0,
  732.      0,   115,   120,   120,   310,   315,     0,     0,   307,   308,
  733.    311,   339,   309,   193,     0,     0,   186,   472,   441,   394,
  734.    449,   448,   452,   455,   430,   428,   173,   212,   181,   255,
  735.      0,     0,   303,   348,     0,     0,   344,   328,   329,   330,
  736.      0,     0,     0,   347,     0,   345,   312,   126,     0,   127,
  737.      0,     0,   299,   304,   298,   321,     0,     0,   189,   192,
  738.      0,     0,     0,     0,    47,     0,     0,     0,   342,   331,
  739.      0,   336,     0,     0,   124,   195,     0,   125,   198,   316,
  740.    303,     0,     0,   194,   399,   300,     0,   302,   340,   322,
  741.    326,     0,   337,     0,   122,     0,   123,     0,   314,   305,
  742.    303,     0,   318,   303,   348,   303,   343,   350,     0,   196,
  743.    199,   306,   320,   303,   341,     0,   327,     0,     0,   351,
  744.    352,   332,     0,     0,   319,   323,     0,   350,     0,     0,
  745.    197,   200,   348,     0,     0,   333,   353,     0,   354,     0,
  746.      0,   324,   355,     0,   334,   303,     0,     0,   325,   335,
  747.    356,     0,     0,     0
  748. };
  749.  
  750. static const short yydefgoto[] = {   912,
  751.      1,     2,     3,    25,    26,    27,   326,   549,   332,   552,
  752.    187,   439,   646,   113,   367,   385,   115,   116,   226,   117,
  753.    563,   118,   119,   233,   120,   121,   313,   314,   315,   545,
  754.    635,   636,    28,   181,   762,   429,    81,   430,   128,   274,
  755.     31,   205,   193,    69,   188,   194,   626,    70,   548,   318,
  756.    319,    72,   422,   423,   424,   624,   693,   648,   649,   650,
  757.    711,   776,   818,   835,   856,   883,   838,   858,   884,   305,
  758.    197,   657,   198,    32,   219,   221,   211,    82,   715,   335,
  759.     85,    86,   217,   460,   461,   209,   210,   130,   659,   131,
  760.    177,   273,   637,   704,   316,   469,   560,   561,   562,   543,
  761.    544,   766,   767,   768,   793,   814,   443,   815,   640,   769,
  762.    770,   841,   792,   874,   865,   893,   906,   866,   771,   772,
  763.    864,   773,   805,   368,   879,   880,   881,   904,   390,   391,
  764.    431,   612,   432,   433,   434,   308,   309,   435,   436,   633,
  765.     33,    63,    34,    35,    36,   410,   666,   292,   581,   779,
  766.    506,   295,   518,   583,    37,   297,    59,   415,   523,   416,
  767.    528,   673,   674,    38,    54,   282,   500,    55,   288,   504,
  768.    411,   412,   516,   590,   783,   517,   585,   725,   586,   726,
  769.    158,   402,   497,   498,   499,   660,   661,   284,   404,   159,
  770.    160,   161,   162,   163,   566,   567,   652,   568,   355,   122,
  771.    235,   473,   358,   359,   360,   123,   124,   125
  772. };
  773.  
  774. static const short yypact[] = {    96,
  775.    105,  2806,  2806,   237,-32768,-32768,-32768,-32768,   191,   231,
  776.    240,    27,    54,-32768,-32768,   107,   107,-32768,    90,   107,
  777.     90,   107,   107,-32768,-32768,-32768,-32768,   242,    70,  2978,
  778. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  779. -32768,-32768,-32768,-32768,-32768,-32768,    85,   126,   111,   126,
  780.    133,  2541,  2379,  3114,  3114,    59,    44,   107,-32768,    90,
  781. -32768,-32768,   104,   107,-32768,   162,-32768,   242,   123,-32768,
  782.    194,-32768,  1657,-32768,   379,-32768,-32768,-32768,   242,-32768,
  783.    835,    86,-32768,   171,   160,   404,-32768,   202,-32768,-32768,
  784. -32768,-32768,  2595,  2649,-32768,  2541,  2541,   107,-32768,-32768,
  785. -32768,  2541,-32768,-32768,  1333,-32768,   208,   238,   246,-32768,
  786. -32768,-32768,  2541,   248,   251,-32768,-32768,  3422,   517,   336,
  787.    273,-32768,-32768,-32768,-32768,-32768,   299,   189,-32768,   302,
  788.   3233,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  789. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  790. -32768,-32768,-32768,-32768,   576,  3295,-32768,-32768,-32768,  2351,
  791.    360,-32768,-32768,-32768,   107,   107,   318,   107,   107,-32768,
  792.     39,-32768,-32768,   107,   304,   375,   234,    41,-32768,   379,
  793.    242,-32768,-32768,   393,-32768,  1820,   707,   194,-32768,-32768,
  794.    379,-32768,   125,-32768,   194,  1755,   353,   407,   310,  1736,
  795.    835,-32768,-32768,-32768,-32768,-32768,-32768,   395,   365,-32768,
  796.     86,   413,   194,-32768,-32768,   397,   415,  2950,   126,   194,
  797.    126,  1333,-32768,  1333,-32768,  2541,-32768,-32768,-32768,-32768,
  798.    427,   432,   438,   457,  2433,  3142,  3295,   107,-32768,   437,
  799.   2541,  2541,  2541,  2541,  2541,  2541,  2541,  2541,  2541,  2541,
  800.   2541,  2541,  2541,  2541,  2541,  2541,  2541,  2541,-32768,-32768,
  801.    107,   107,  2541,  2541,-32768,-32768,-32768,-32768,   189,  1879,
  802.    194,-32768,   481,   716,-32768,-32768,-32768,-32768,  3295,-32768,
  803.    459,   460,   535,-32768,   360,-32768,   614,   460,    90,   475,
  804. -32768,   495,   480,   502,-32768,-32768,   495,-32768,-32768,   605,
  805. -32768,   407,-32768,-32768,   554,   407,   577,-32768,  2825,-32768,
  806.    504,   511,-32768,   627,    60,-32768,-32768,   553,   194,   279,
  807.     49,-32768,   379,   379,-32768,   707,   194,-32768,  1938,-32768,
  808. -32768,   707,  2541,   107,   514,   365,   518,-32768,-32768,-32768,
  809. -32768,   525,-32768,   526,   520,   530,-32768,-32768,-32768,   529,
  810.    544,  2271,-32768,-32768,-32768,-32768,   583,   546,  3142,-32768,
  811.    547,   549,-32768,  3422,  3422,  3422,-32768,   588,   752,  1307,
  812.   1463,  1542,  2350,  2750,   766,   920,   920,   239,   239,-32768,
  813. -32768,-32768,-32768,-32768,   560,   251,   559,    72,   343,-32768,
  814.   2937,-32768,   562,   189,-32768,  1997,-32768,   716,   571,  3178,
  815.    756,-32768,-32768,  3252,  3295,-32768,-32768,   567,    90,-32768,
  816.    566,  2881,-32768,-32768,   271,   818,   587,-32768,-32768,-32768,
  817. -32768,   166,-32768,   592,    65,   582,-32768,-32768,-32768,  3282,
  818. -32768,   585,   347,-32768,-32768,   178,-32768,-32768,    55,-32768,
  819. -32768,-32768,  3308,-32768,   353,-32768,-32768,   353,-32768,   616,
  820. -32768,-32768,   579,-32768,  3422,-32768,   194,   586,-32768,   584,
  821. -32768,-32768,   584,   194,   194,-32768,-32768,-32768,   638,-32768,
  822. -32768,-32768,  3206,-32768,-32768,   583,-32768,-32768,-32768,  2541,
  823. -32768,-32768,   481,-32768,-32768,-32768,   481,-32768,-32768,   591,
  824.    107,-32768,  2351,   602,  3019,-32768,-32768,  3308,  1774,    55,
  825. -32768,   590,   604,    55,-32768,   495,-32768,   387,-32768,-32768,
  826. -32768,-32768,   242,    70,  2978,   287,-32768,-32768,-32768,-32768,
  827. -32768,-32768,-32768,-32768,-32768,-32768,  3325,   615,-32768,   619,
  828.    605,  2703,-32768,-32768,   728,   210,-32768,-32768,  3263,-32768,
  829.    693,   438,-32768,-32768,-32768,   620,  3030,  1648,    55,-32768,
  830. -32768,    55,-32768,   194,-32768,   249,-32768,-32768,   107,   933,
  831.    638,-32768,  1413,  2541,   660,   617,  3206,-32768,  1386,-32768,
  832. -32768,-32768,-32768,   728,-32768,-32768,-32768,-32768,   107,-32768,
  833. -32768,   641,   495,-32768,  3114,  3114,   137,   379,   242,  2909,
  834. -32768,   409,  2780,   496,   496,-32768,-32768,-32768,   195,   629,
  835. -32768,-32768,   210,   194,   236,   295,   194,-32768,   194,   295,
  836.    194,  2937,-32768,-32768,-32768,-32768,-32768,   379,-32768,   242,
  837. -32768,-32768,  3422,-32768,-32768,  1648,-32768,-32768,-32768,  2541,
  838.     69,-32768,   363,   472,   849,   632,  1013,-32768,-32768,-32768,
  839. -32768,-32768,   669,   107,-32768,   677,  3422,   646,   645,-32768,
  840.    251,-32768,  2541,-32768,   660,-32768,   236,   295,   194,   372,
  841. -32768,-32768,   420,-32768,   664,   495,-32768,-32768,-32768,-32768,
  842.   2541,   695,   659,-32768,   659,-32768,  2541,-32768,   594,   728,
  843. -32768,  2056,-32768,-32768,-32768,   995,   210,-32768,-32768,-32768,
  844.    392,   414,  1413,-32768,  3386,  2541,-32768,-32768,   107,-32768,
  845. -32768,-32768,  1093,   668,-32768,-32768,-32768,-32768,  2137,   706,
  846.   1413,-32768,-32768,  1493,-32768,-32768,-32768,-32768,-32768,-32768,
  847.    728,-32768,-32768,   684,    68,    68,  3422,  2541,   496,   266,
  848.    505,   505,-32768,-32768,   665,-32768,-32768,   674,-32768,  3386,
  849. -32768,-32768,  2217,   715,   700,-32768,-32768,   705,   708,  2541,
  850.    734,   689,   698,  2487,   327,   747,    83,    98,-32768,   738,
  851.    703,-32768,   729,  3047,-32768,   761,  1173,    71,-32768,-32768,
  852. -32768,-32768,-32768,-32768,   704,  1573,-32768,-32768,   495,-32768,
  853. -32768,-32768,-32768,-32768,  3422,-32768,-32768,-32768,-32768,-32768,
  854.   2541,   724,-32768,  2541,  2541,  3363,-32768,-32768,-32768,-32768,
  855.    732,  2541,   733,-32768,   726,-32768,-32768,-32768,   379,-32768,
  856.    242,  1253,-32768,-32768,-32768,-32768,  2541,  1573,-32768,-32768,
  857.    757,   745,  2541,   810,   630,   760,   758,  2541,-32768,-32768,
  858.    762,-32768,  2541,   424,-32768,   316,   436,-32768,  1022,-32768,
  859. -32768,  2217,   768,-32768,-32768,-32768,   769,-32768,-32768,-32768,
  860. -32768,  3404,-32768,    43,-32768,   707,-32768,   707,-32768,-32768,
  861. -32768,   774,-32768,-32768,  2541,-32768,-32768,   824,   782,-32768,
  862. -32768,-32768,-32768,-32768,-32768,   802,-32768,   822,    47,   803,
  863. -32768,-32768,   438,   438,-32768,-32768,  2541,   824,   816,   824,
  864. -32768,-32768,  2541,   825,    53,-32768,-32768,   826,-32768,   577,
  865.    817,-32768,   336,   325,-32768,-32768,   823,   577,-32768,-32768,
  866.    336,   905,   906,-32768
  867. };
  868.  
  869. static const short yypgoto[] = {-32768,
  870. -32768,-32768,-32768,   904,  -374,-32768,-32768,-32768,-32768,-32768,
  871. -32768,-32768,    -6,-32768,   -52,   378,  -230,   473,-32768,   -19,
  872. -32768,   115,   117,-32768,  -295,-32768,  -297,   597,-32768,-32768,
  873.    278,-32768,    -8,  -159,-32768,    25,   837,    29,   -63,   642,
  874.      9,  -214,  -584,   -60,  -190,  -125,-32768,-32768,-32768,  -147,
  875.     -4,   -62,-32768,   391,-32768,   292,-32768,  -595,-32768,  -670,
  876. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,   -73,
  877.   -142,  -490,   -20,   -13,-32768,-32768,-32768,-32768,-32768,   589,
  878.      1,-32768,-32768,   608,   368,   719,   598,   -68,   -74,   -36,
  879.   -175,  -244,   329,-32768,  -249,-32768,-32768,-32768,   374,  -226,
  880.   -215,-32768,-32768,-32768,-32768,  -140,  -422,  -638,  -557,-32768,
  881.    121,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  882. -32768,   132,-32768,  -727,    87,-32768,    88,-32768,   595,-32768,
  883.   -361,-32768,   573,   575,   441,  -302,-32768,-32768,-32768,-32768,
  884. -32768,   926,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  885. -32768,-32768,-32768,-32768,-32768,-32768,   -14,  -367,-32768,   462,
  886. -32768,   394,   257,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  887.   -277,-32768,-32768,-32768,   265,   478,-32768,-32768,-32768,-32768,
  888.    -42,   713,-32768,-32768,   497,-32768,   275,   510,-32768,   606,
  889.    607,   -97,-32768,  -119,-32768,-32768,   356,   444,-32768,-32768,
  890. -32768,-32768,-32768,-32768,   661,-32768,-32768,-32768
  891. };
  892.  
  893.  
  894. #define    YYLAST        3474
  895.  
  896.  
  897. static const short yytable[] = {   114,
  898.    127,   196,    47,    49,    51,   327,    61,    73,   182,    56,
  899.     57,   425,   164,    60,   320,    62,    64,   351,   199,   417,
  900.     75,    79,   216,    71,   389,   451,    29,    29,   449,   485,
  901.     30,    30,   386,   691,   454,   324,   234,   512,    80,   556,
  902.    286,   167,   508,   777,   605,   172,   317,   178,   321,   218,
  903.     88,    62,   232,   272,   304,   542,   278,   175,   200,   397,
  904.   -104,   129,   285,    71,   440,   338,   826,   206,   781,   441,
  905.    195,   816,   343,   265,    71,   208,   227,   228,   301,   708,
  906.    868,   168,   230,   296,   888,    52,   207,   281,    42,    43,
  907.    900,   229,   388,   239,   129,    -1,   165,   738,    66,   185,
  908.    186,    66,   169,    58,    -2,   820,   696,   328,   329,    42,
  909.     43,   394,    53,   129,   327,   775,   303,   166,   869,   174,
  910.    -34,   268,   889,   271,   446,   170,   271,    58,   901,   817,
  911.    269,   270,   182,   311,    58,   -33,   350,   876,   357,   277,
  912.    533,  -104,    58,   483,   782,   708,    74,   844,   280,   487,
  913.    592,   496,    44,   345,   824,   346,   302,    45,   289,   290,
  914.    306,   293,   294,   184,   129,   898,    83,   298,   361,   232,
  915.    178,   232,    71,    44,   317,   195,    71,   445,    45,   450,
  916.    173,   448,   354,   397,   174,   317,   195,   206,   731,   732,
  917.     84,   317,    87,    42,    43,   185,   186,   447,   462,   179,
  918.    462,   322,   859,   180,   208,   323,   347,   339,   182,   341,
  919.    399,   387,    65,   663,    89,   669,   709,   393,    66,   342,
  920.    176,   344,   872,    66,   834,   875,   277,   877,   582,   212,
  921.    129,   362,   129,    42,    43,   885,    65,   213,   268,    66,
  922.    301,   530,    42,    43,    65,   129,   531,   269,   270,   577,
  923.    690,    65,   189,   540,   383,   384,   182,    44,   541,   608,
  924.    206,   476,    45,    66,   271,    66,   236,   909,   603,   270,
  925.    676,    66,    46,   578,   408,   677,   453,   580,    66,   220,
  926.    406,    65,   189,    67,   743,   301,   630,   129,   256,   257,
  927.    258,    67,    68,   421,   681,   682,   237,    44,   190,   302,
  928.     68,   386,    45,   306,   238,   665,    44,   191,    66,   553,
  929.    638,    45,    48,    40,    41,   195,   557,   558,   195,   195,
  930.    192,    50,   625,   240,    66,   627,   616,   208,   190,    42,
  931.     43,   241,   472,   651,   510,   511,   503,   191,   519,   520,
  932.    521,   787,   184,   490,   265,  -155,   241,   266,   522,  -442,
  933.    192,  -155,   526,   185,   186,   364,   365,   366,   389,   369,
  934.    370,   371,   372,   373,   374,   375,   376,   377,   378,   379,
  935.    380,   381,   382,   286,   267,   565,   802,   275,   733,   527,
  936.    299,    65,   189,   271,   206,   701,   330,   706,   724,   271,
  937.    180,   842,  -155,    44,   507,   285,  -155,   287,    45,   291,
  938.    907,   395,   396,   513,   214,   908,   628,     5,    66,     7,
  939.    126,   328,   329,   129,   462,     9,    10,    11,   484,   639,
  940.    535,   536,   651,   538,   129,   494,   679,   539,   190,   495,
  941.    333,    13,   686,   300,   483,   487,   514,   191,    80,   698,
  942.    515,   483,   487,   699,   680,   334,   730,   455,   720,   687,
  943.    192,   307,   721,   706,   519,   520,   521,   683,   684,   685,
  944.    607,   611,   688,   689,   584,   185,   186,   546,   736,   655,
  945.     19,   547,   323,  -248,  -248,    21,   519,   520,   521,   337,
  946.    215,  -241,   631,   697,   571,   574,   670,   519,   520,   521,
  947.    737,   340,   587,   765,   180,   639,   707,   722,    65,   189,
  948.    855,   821,   348,    80,   323,   588,   589,   349,    71,   717,
  949.    718,   719,   857,   363,   606,   610,   180,   594,   595,   350,
  950.    672,   672,   494,    80,   421,    66,   495,   765,   199,   526,
  951.    604,   609,   352,   671,   400,   277,   401,   618,   620,   395,
  952.    396,   182,   667,   668,   403,   190,   182,   739,   438,   700,
  953.    409,   195,   632,   658,   191,    80,   527,  -440,   870,   692,
  954.    871,   413,   707,   681,   682,   223,   225,   192,   587,   604,
  955.    259,   260,   662,   261,   262,   263,   264,   414,    42,    43,
  956.    184,   513,   178,   195,    71,    92,   437,   438,   444,   195,
  957.    195,   457,   790,   459,   569,   466,    65,   601,   609,   587,
  958.    301,   129,   464,   465,   903,   467,   468,    42,    43,   418,
  959.    419,   420,   911,   195,   514,    71,    42,    43,   515,   470,
  960.    474,   475,   478,    66,   479,   480,   765,   312,   509,   735,
  961.   -107,  -107,  -107,  -107,   279,   481,  -107,   710,  -107,  -107,
  962.   -107,   482,    44,   602,   486,   327,   491,    45,   505,   529,
  963.    532,   550,   603,   270,  -107,   672,   761,   534,   302,   306,
  964.    537,   551,   623,   554,   555,   302,   306,   891,   892,   559,
  965.    539,    44,   405,   570,   604,   604,    45,   647,   573,   579,
  966.     44,   609,   609,   259,   260,    45,   261,   262,   263,   264,
  967.    761,   596,   741,  -107,   597,   615,   617,   653,  -107,   654,
  968.    658,   801,   760,   664,   678,   849,   -31,   312,  -107,  -283,
  969.   -303,  -303,  -303,  -303,   712,   317,   604,   317,  -303,  -303,
  970.   -303,   203,   204,   713,   195,   714,   723,     9,    10,    11,
  971.     65,   601,   728,   763,  -303,   836,   760,   764,   822,   729,
  972.    623,   774,   827,    61,   695,   742,   780,   788,   803,   831,
  973.    837,   789,   -32,   804,   809,   811,   312,    66,   791,     5,
  974.      6,     7,     8,   794,   843,   798,   795,     9,    10,    11,
  975.    847,   797,    80,  -303,   799,   806,   812,   602,  -303,   807,
  976.    854,   819,   823,    13,   833,   727,   603,   270,  -103,   761,
  977.    839,   246,   247,   248,   249,   250,   251,   252,   253,   254,
  978.    255,   256,   257,   258,   195,   808,    71,   647,   830,   832,
  979.    740,   252,   253,   254,   255,   256,   257,   258,   524,   845,
  980.    846,     5,    19,     7,   126,   647,   848,    21,   647,     9,
  981.     10,    11,   878,   851,   894,   760,   850,  -462,   853,   202,
  982.    203,   204,   785,   862,   863,    13,     9,    10,    11,   312,
  983.    873,  -116,  -116,  -116,  -116,  -116,  -116,  -116,   882,  -116,
  984.   -116,  -116,  -116,  -116,   796,  -116,  -116,  -116,  -116,  -116,
  985.   -116,  -116,  -116,  -116,  -116,  -116,  -116,  -116,   886,  -116,
  986.    887,  -116,  -116,   890,    19,  -416,  -416,  -416,  -116,    21,
  987.    647,  -116,   896,   905,   525,  -416,  -116,  -116,  -116,   910,
  988.    899,   902,  -116,  -116,   913,   914,    39,  -116,  -116,   600,
  989.    825,   442,  -116,   702,  -116,  -116,   201,   694,   398,  -116,
  990.   -116,   598,   629,  -116,   458,  -116,  -116,  -116,  -116,   336,
  991.   -116,   456,   647,   634,   641,  -303,  -303,  -303,  -303,  -303,
  992.   -303,  -303,   852,  -303,  -303,  -303,  -303,  -303,   463,  -303,
  993.   -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,
  994.   -303,  -303,   860,  -303,   703,  -303,  -303,   254,   255,   256,
  995.    257,   258,  -303,   861,   895,  -303,   501,   897,   502,   614,
  996.   -303,  -303,  -303,   171,   593,   786,  -303,  -303,   675,   488,
  997.    784,  -303,  -303,   591,   576,   778,  -303,    65,  -303,  -303,
  998.    407,   301,   572,  -303,  -303,   492,   493,  -303,   716,  -303,
  999.    656,  -303,  -303,   312,  -303,  -303,  -303,     0,     0,   477,
  1000.   -303,  -303,     0,  -303,    66,     0,     0,  -303,     0,  -303,
  1001.   -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,
  1002.      0,  -303,     0,  -303,   608,  -303,  -303,     0,   184,     0,
  1003.      0,  -155,  -303,   603,   270,  -303,     0,  -155,     0,     0,
  1004.   -303,  -303,  -303,     0,     0,     0,  -303,  -303,     0,     0,
  1005.      0,  -303,  -303,     0,     0,     0,  -303,     0,  -303,  -303,
  1006.    185,   186,     0,  -303,  -303,     0,     0,  -303,     0,  -303,
  1007.    705,  -303,  -303,   312,  -303,  -303,  -303,     0,  -155,     0,
  1008.   -303,  -303,  -155,  -303,     0,     0,     0,  -303,     0,  -303,
  1009.   -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,
  1010.      0,  -303,     0,  -303,     0,  -303,  -303,     0,     0,     0,
  1011.      0,     0,  -303,     0,     0,  -303,     0,     0,     0,     0,
  1012.   -303,  -303,  -303,     0,     0,     0,  -303,  -303,     0,     0,
  1013.      0,  -303,  -303,     0,     0,     0,  -303,     0,  -303,  -303,
  1014.      0,     0,     0,  -303,  -303,     0,     0,  -303,     0,  -303,
  1015.   -284,  -303,  -303,   813,  -303,  -303,  -303,     0,     0,     0,
  1016.   -303,  -303,     0,  -303,     0,     0,     0,  -303,     0,  -303,
  1017.   -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,  -303,
  1018.      0,  -303,     0,  -303,     0,  -303,  -303,     0,     0,     0,
  1019.      0,     0,  -303,     0,     0,  -303,     0,     0,     0,     0,
  1020.   -303,  -303,  -303,     0,     0,     0,  -303,  -303,     0,     0,
  1021.      0,  -303,  -303,     0,     0,     0,  -303,     0,  -303,  -303,
  1022.      0,     0,     0,  -303,  -303,     0,     0,  -303,     0,  -303,
  1023.      0,  -303,  -303,   840,  -303,  -313,  -313,     0,     0,     0,
  1024.   -313,  -313,     0,  -313,     0,     0,     0,  -313,     0,  -313,
  1025.   -313,  -313,  -313,  -313,  -313,  -313,  -313,  -313,  -313,  -313,
  1026.      0,  -313,     0,  -313,     0,  -313,  -313,     0,     0,     0,
  1027.      0,     0,  -313,     0,     0,  -313,     0,     0,     0,     0,
  1028.   -313,  -313,  -313,     0,     0,     0,  -313,  -313,     0,     0,
  1029.      0,  -313,  -313,     0,     0,     0,  -313,     0,  -313,  -313,
  1030.      0,     0,     0,  -313,  -313,     0,     0,  -313,     0,  -313,
  1031.      0,  -313,  -313,   231,  -313,    90,     5,     0,     7,   126,
  1032.     91,    92,     0,    93,     9,    10,    11,   247,   248,   249,
  1033.    250,   251,   252,   253,   254,   255,   256,   257,   258,     0,
  1034.     13,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1035.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1036.    100,   101,   102,     0,     0,     0,   103,   104,     0,     0,
  1037.      0,   105,   106,     0,     0,     0,   107,     0,   108,    19,
  1038.      0,     0,     0,   109,    21,     0,     0,   110,     0,     0,
  1039.      0,   111,   112,   642,   -86,   643,    43,     0,     0,     0,
  1040.     91,    92,   244,    93,   245,   246,   247,   248,   249,   250,
  1041.    251,   252,   253,   254,   255,   256,   257,   258,     0,     0,
  1042.      0,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1043.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1044.    100,   101,   102,     0,     0,     0,   103,   104,     0,     0,
  1045.    644,   105,   106,     0,     0,     0,   107,     0,   108,    44,
  1046.      0,     0,     0,   109,    45,     0,     0,   110,     0,     0,
  1047.   -183,   111,   112,   642,   645,   643,    43,     0,     0,     0,
  1048.     91,    92,     0,    93,   248,   249,   250,   251,   252,   253,
  1049.    254,   255,   256,   257,   258,     0,     0,     0,     0,     0,
  1050.      0,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1051.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1052.    100,   101,   102,     0,     0,     0,   103,   104,     0,     0,
  1053.    644,   105,   106,     0,     0,     0,   107,     0,   108,    44,
  1054.      0,     0,     0,   109,    45,     0,     0,   110,     0,     0,
  1055.   -238,   111,   112,   642,   645,   643,    43,     0,     0,     0,
  1056.     91,    92,     0,    93,   249,   250,   251,   252,   253,   254,
  1057.    255,   256,   257,   258,     0,     0,     0,     0,     0,     0,
  1058.      0,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1059.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1060.    100,   101,   102,     0,     0,     0,   103,   104,     0,     0,
  1061.    644,   105,   106,     0,     0,     0,   107,     0,   108,    44,
  1062.      0,     0,     0,   109,    45,     0,     0,   110,   621,     0,
  1063.     90,   111,   112,     0,   645,    91,    92,   183,    93,     0,
  1064.    -27,   -27,   -27,   -27,     0,     0,     0,     0,   -27,   -27,
  1065.    -27,     0,     0,     0,     0,     0,    94,     0,    95,     0,
  1066.     96,    97,     0,   184,   -27,     0,  -155,    98,     0,     0,
  1067.     99,     0,  -155,     0,     0,   100,   101,   102,     0,     0,
  1068.      0,   103,   104,     0,     0,     0,   105,   106,     0,     0,
  1069.      0,   107,     0,   108,     0,   185,   186,     0,   109,     0,
  1070.      0,     0,   110,   -27,     0,     0,   111,   112,   -27,   622,
  1071.      0,     0,     0,  -155,     0,     0,   331,  -155,   -27,   -23,
  1072.    -23,   -23,   -23,     0,     0,     0,     0,   -23,   -23,   -23,
  1073.      0,     0,     0,     0,     0,   325,     0,     0,   -19,   -19,
  1074.    -19,   -19,   184,   -23,     0,  -155,   -19,   -19,   -19,     0,
  1075.      0,  -155,     0,     0,   312,     0,     0,  -464,  -464,  -464,
  1076.   -464,   184,   -19,     0,  -155,  -464,  -464,  -464,     0,     0,
  1077.   -155,     0,     0,     0,   185,   186,     0,     0,     0,     0,
  1078.      0,  -464,   -23,     0,     0,     0,     0,   -23,     0,     0,
  1079.      0,     0,  -155,     0,     0,     0,  -155,   -23,     0,     0,
  1080.      0,   -19,    90,     0,     0,     0,   -19,    91,    92,     0,
  1081.     93,  -155,     0,     0,     0,  -155,   -19,     0,     0,     0,
  1082.   -464,     0,     0,     0,     0,  -464,     0,     0,    94,     0,
  1083.     95,     0,    96,    97,     0,  -464,     0,     0,     0,    98,
  1084.      0,     0,    99,     0,     0,     0,     0,   100,   101,   102,
  1085.      0,     0,     0,   103,   104,     0,     0,     0,   105,   106,
  1086.      0,    90,     0,   107,     0,   108,    91,    92,     0,    93,
  1087.    109,     0,     0,     0,   110,     0,     0,     0,   111,   112,
  1088.      0,     0,   310,     0,     0,     0,     0,    94,     0,    95,
  1089.      0,    96,    97,     0,     0,     0,     0,     0,    98,     0,
  1090.      0,    99,     0,     0,     0,     0,   100,   101,   102,     0,
  1091.      0,     0,   103,   104,     0,     0,     0,   105,   106,     0,
  1092.     90,     0,   107,     0,   108,    91,    92,     0,    93,   109,
  1093.      0,     0,     0,   110,     0,     0,     0,   111,   112,     0,
  1094.      0,   392,     0,     0,     0,     0,    94,     0,    95,     0,
  1095.     96,    97,     0,     0,     0,     0,     0,    98,     0,     0,
  1096.     99,     0,     0,     0,     0,   100,   101,   102,     0,     0,
  1097.      0,   103,   104,     0,     0,     0,   105,   106,     0,    90,
  1098.      0,   107,     0,   108,    91,    92,     0,    93,   109,     0,
  1099.      0,     0,   110,     0,     0,     0,   111,   112,     0,     0,
  1100.    452,     0,     0,     0,     0,    94,     0,    95,     0,    96,
  1101.     97,     0,     0,     0,     0,     0,    98,     0,     0,    99,
  1102.      0,     0,     0,     0,   100,   101,   102,     0,     0,     0,
  1103.    103,   104,     0,     0,     0,   105,   106,     0,    90,     0,
  1104.    107,     0,   108,    91,    92,     0,    93,   109,     0,     0,
  1105.      0,   110,     0,     0,     0,   111,   112,     0,     0,   489,
  1106.      0,     0,     0,     0,    94,     0,    95,     0,    96,    97,
  1107.      0,     0,     0,     0,     0,    98,     0,     0,    99,     0,
  1108.      0,     0,     0,   100,   101,   102,     0,     0,     0,   103,
  1109.    104,     0,     0,     0,   105,   106,     0,     0,     0,   107,
  1110.      0,   108,     0,     0,     0,     0,   109,     0,     0,     0,
  1111.    110,     0,     0,     0,   111,   112,     0,     0,   734,   643,
  1112.    744,     6,     7,     8,    91,    92,     0,    93,     9,    10,
  1113.     11,   745,     0,   746,   747,   748,   749,   750,   751,   752,
  1114.    753,   754,   755,   756,    13,    94,     0,    95,     0,    96,
  1115.     97,     0,     0,     0,     0,     0,    98,     0,     0,    99,
  1116.      0,     0,     0,     0,   100,   101,   102,     0,     0,     0,
  1117.    103,   104,     0,     0,     0,   105,   106,     0,     0,     0,
  1118.    107,     0,   108,   757,     0,     0,     0,   109,   758,     0,
  1119.      0,   110,     0,   759,     0,   111,   112,     0,   350,   643,
  1120.     43,     0,     0,     0,    91,    92,     0,    93,     0,     0,
  1121.      0,   745,     0,   746,   747,   748,   749,   750,   751,   752,
  1122.    753,   754,   755,   756,     0,    94,     0,    95,     0,    96,
  1123.     97,     0,     0,     0,     0,     0,    98,     0,     0,    99,
  1124.      0,     0,     0,     0,   100,   101,   102,     0,     0,     0,
  1125.    103,   104,     0,    90,     0,   105,   106,     0,    91,    92,
  1126.    107,    93,   108,    44,     0,     0,     0,   109,    45,     0,
  1127.      0,   110,     0,   759,     0,   111,   112,     0,   350,    94,
  1128.      0,    95,     0,    96,    97,     0,     0,     0,     0,     0,
  1129.     98,     0,     0,    99,     0,     0,     0,     0,   100,   101,
  1130.    102,     0,     0,     0,   103,   104,     0,     0,     0,   105,
  1131.    106,     0,     0,     0,   107,     0,   108,     0,     0,     0,
  1132.      0,   109,     0,     0,     0,   110,     0,     0,     0,   111,
  1133.    112,     0,   471,   132,   133,     0,   134,   135,     0,     0,
  1134.      0,   136,   137,   138,   139,   140,   141,   142,   143,   144,
  1135.    145,   146,   147,   148,   149,   150,   151,   152,   153,   154,
  1136.      0,    90,     5,     0,     7,   126,    91,    92,   155,    93,
  1137.      9,    10,    11,   250,   251,   252,   253,   254,   255,   256,
  1138.    257,   258,     0,     0,     0,     0,    13,    94,     0,    95,
  1139.      0,    96,    97,     0,     0,     0,     0,     0,    98,     0,
  1140.      0,    99,   157,     0,     0,     0,   100,   101,   102,     0,
  1141.      0,   283,   103,   104,     0,    90,     0,   105,   106,     0,
  1142.     91,    92,   107,    93,   108,    19,     0,     0,     0,   109,
  1143.     21,     0,     0,   110,     0,     0,     0,   111,   112,     0,
  1144.      0,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1145.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1146.    100,   101,   102,     0,     0,     0,   103,   104,     0,    90,
  1147.      0,   105,   106,     0,    91,    92,   107,    93,   108,   353,
  1148.      0,     0,     0,   109,     0,     0,     0,   110,     0,     0,
  1149.      0,   111,   112,     0,     0,    94,     0,    95,     0,    96,
  1150.     97,     0,     0,     0,     0,     0,    98,     0,     0,    99,
  1151.      0,     0,     0,     0,   100,   101,   102,     0,     0,     0,
  1152.    103,   104,     0,    90,     0,   105,   106,     0,    91,    92,
  1153.    107,    93,   108,     0,     0,     0,     0,   109,     0,     0,
  1154.      0,   110,     0,   800,     0,   111,   112,     0,     0,    94,
  1155.      0,    95,     0,    96,    97,     0,     0,     0,     0,     0,
  1156.     98,     0,     0,    99,     0,     0,     0,     0,   100,   101,
  1157.    102,     0,     0,     0,   103,   104,     0,    90,     0,   105,
  1158.    106,     0,    91,    92,   107,    93,   108,     0,     0,     0,
  1159.      0,   109,     0,     0,     0,   110,     0,     0,     0,   111,
  1160.    112,     0,     0,    94,     0,    95,     0,    96,    97,     0,
  1161.      0,     0,     0,     0,    98,     0,     0,    99,     0,     0,
  1162.      0,     0,   100,   101,   102,     0,     0,     0,   103,   104,
  1163.      0,    90,     0,   222,   106,     0,    91,    92,   107,    93,
  1164.    108,     0,     0,     0,     0,   109,     0,     0,     0,   110,
  1165.      0,     0,     0,   111,   112,     0,     0,    94,     0,    95,
  1166.      0,    96,    97,     0,     0,     0,     0,     0,    98,     0,
  1167.      0,    99,     0,     0,     0,     0,   100,   101,   102,     0,
  1168.      0,     0,   103,   104,     0,   599,     0,   224,   106,     0,
  1169.     91,    92,   107,    93,   108,     0,     0,     0,     0,   109,
  1170.      0,     0,     0,   110,     0,     0,     0,   111,   112,     0,
  1171.      0,    94,     0,    95,     0,    96,    97,     0,     0,     0,
  1172.      0,     0,    98,     0,     0,    99,     0,     0,     0,     0,
  1173.    100,   101,   102,     0,     0,     0,   103,   104,     0,     0,
  1174.      0,   105,   106,     0,     0,     0,   107,     0,   108,     0,
  1175.      0,     0,     0,   109,     0,     0,     0,   110,     0,     0,
  1176.    524,   111,   112,     5,     0,     7,   126,     0,     0,     0,
  1177.      0,     9,    10,    11,   251,   252,   253,   254,   255,   256,
  1178.    257,   258,     0,     0,     0,     0,     4,    13,  -120,     5,
  1179.      6,     7,     8,     0,     0,     0,     0,     9,    10,    11,
  1180.      0,     0,     0,     0,     0,   426,     0,   427,     5,     6,
  1181.      7,     8,    12,    13,   428,  -120,     9,    10,    11,     0,
  1182.      0,     0,     0,     0,     0,     0,    19,  -415,  -415,  -415,
  1183.      0,    21,    13,    14,    15,  -120,   525,  -415,     0,     0,
  1184.      0,     0,     0,     0,  -120,     0,    16,    17,    18,     0,
  1185.      0,     0,    19,     0,     0,     0,    20,    21,    22,    23,
  1186.      0,     4,    24,  -120,     5,     6,     7,     8,     0,     0,
  1187.      0,    19,     9,    10,    11,     0,    21,     0,     0,     0,
  1188.   -363,     0,     0,     0,     0,     0,     0,     0,    13,     4,
  1189.   -120,  -120,     5,     6,     7,     8,     0,     0,     0,     0,
  1190.      9,    10,    11,     0,     0,     0,     0,     0,   510,   511,
  1191.   -120,     0,     0,     0,     0,     0,    13,   426,  -120,  -120,
  1192.      5,     6,     7,     8,     0,     0,   428,    19,     9,    10,
  1193.     11,     0,    21,     5,     0,     7,   276,    24,  -120,     0,
  1194.      0,     9,    10,    11,    13,     0,     0,  -120,     0,     0,
  1195.      0,     0,     0,     0,     0,    19,     0,    13,     0,     0,
  1196.     21,     5,    76,     7,    77,    24,     0,     0,     0,     9,
  1197.     10,    11,     0,     0,     0,     0,     0,     0,     0,     0,
  1198.      0,     0,     0,    19,     0,    13,     0,     0,    21,     0,
  1199.      0,     0,  -363,     0,     0,     0,    19,     0,     0,     0,
  1200.      0,    21,     5,    76,     7,    77,  -250,  -250,     0,     0,
  1201.      9,    10,    11,     5,    76,     7,    77,     0,     0,     0,
  1202.      0,     9,    10,    11,    19,     0,    13,     0,     0,    21,
  1203.      5,    76,     7,    77,    78,     0,     0,    13,     9,    10,
  1204.     11,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1205.      0,     0,     0,     0,    13,     0,     0,     0,     0,     0,
  1206.      0,     0,     0,     0,     0,    19,     0,     0,     0,     0,
  1207.     21,     0,     0,     0,     0,   575,    19,     0,     0,     0,
  1208.      0,    21,     0,     0,     0,     0,   619,     0,     0,     0,
  1209.      0,     0,     0,    19,     0,     0,   132,   133,    21,   134,
  1210.    135,     0,     0,   810,   136,   137,   138,   139,   140,   141,
  1211.    142,   143,   144,   145,   146,   147,   148,   149,   150,   151,
  1212.    152,   153,   154,     0,   132,   133,     0,   134,   135,     0,
  1213.      0,   155,   136,   137,   138,   139,   140,   141,   142,   143,
  1214.    144,   145,   146,   147,   148,   149,   150,   151,   152,   153,
  1215.    154,     0,   156,     0,     0,     0,     0,     0,     0,   356,
  1216.    132,   133,     0,   134,   135,   157,     0,     0,   136,   137,
  1217.    138,   139,   140,   141,   142,   143,   144,   145,   146,   147,
  1218.    148,   149,   150,   151,   152,   153,   154,     0,   132,   133,
  1219.      0,   134,   135,   157,     0,   155,   136,   137,   138,   139,
  1220.    140,   141,   142,   143,   144,   145,   146,   147,   148,   149,
  1221.    150,   151,   152,   153,   154,     0,     5,     0,     7,   276,
  1222.      0,     0,     0,   564,     9,    10,    11,     0,     0,   157,
  1223.      0,     0,     0,     0,     0,     5,     6,     7,     8,     0,
  1224.     13,   428,    66,     9,    10,    11,     5,     6,     7,     8,
  1225.      0,     0,   613,     0,     9,    10,    11,   157,     0,    13,
  1226.      0,     0,   268,     0,     0,     5,    76,     7,    77,     0,
  1227.     13,   269,   270,     9,    10,    11,     0,     0,     5,    19,
  1228.      7,   126,     0,     0,    21,     0,     9,    10,    11,    13,
  1229.      0,     5,     6,     7,     8,     0,     0,     0,    19,     9,
  1230.     10,    11,    13,    21,     0,     0,     0,     0,     5,    19,
  1231.      7,   276,     0,     0,    21,    13,     9,    10,    11,     0,
  1232.      0,     0,     0,     0,     0,     0,     0,     0,    19,     0,
  1233.      0,     0,    13,    21,     0,     0,     0,     0,     0,     0,
  1234.      0,    19,     0,     0,     0,     0,    21,     0,     0,     0,
  1235.      0,     0,   828,     0,    19,     0,     0,     0,     0,    21,
  1236.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1237.      0,    19,     0,     0,     0,     0,    21,   242,   243,   244,
  1238.    829,   245,   246,   247,   248,   249,   250,   251,   252,   253,
  1239.    254,   255,   256,   257,   258,    66,     0,     0,     0,     0,
  1240.    242,   243,   244,     0,   245,   246,   247,   248,   249,   250,
  1241.    251,   252,   253,   254,   255,   256,   257,   258,   242,   243,
  1242.    244,   867,   245,   246,   247,   248,   249,   250,   251,   252,
  1243.    253,   254,   255,   256,   257,   258,   242,   243,   244,     0,
  1244.    245,   246,   247,   248,   249,   250,   251,   252,   253,   254,
  1245.    255,   256,   257,   258
  1246. };
  1247.  
  1248. static const short yycheck[] = {    52,
  1249.     53,    75,     9,    10,    11,   196,    21,    28,    71,    16,
  1250.     17,   307,    55,    20,   190,    22,    23,   233,    79,   297,
  1251.     29,    30,    86,    28,   269,   328,     2,     3,   326,   391,
  1252.      2,     3,   263,   618,   332,   195,   105,   412,    30,   462,
  1253.    160,    56,   410,   714,   535,    60,   187,    68,   191,    86,
  1254.     50,    58,   105,   128,   180,     1,   131,    64,    79,   274,
  1255.      1,    53,   160,    68,   314,   213,   794,    81,     1,    10,
  1256.     75,     1,   220,     9,    79,    82,    96,    97,     7,   637,
  1257.     38,    38,   102,    45,    38,    59,     1,   156,     3,     4,
  1258.     38,    98,   268,   113,    86,     0,    38,   693,    30,    59,
  1259.     60,    30,    59,    45,     0,   776,    38,    59,    60,     3,
  1260.      4,   271,    59,   105,   305,   711,    76,    59,    76,    81,
  1261.     38,    50,    76,   128,    76,    82,   131,    45,    76,    59,
  1262.     59,    60,   195,   186,    45,    38,    82,   865,   236,   131,
  1263.     76,    82,    45,   388,    77,   703,    77,   818,   155,   394,
  1264.    518,   401,    67,   222,   793,   224,   177,    72,   165,   166,
  1265.    181,   168,   169,    27,   156,   893,    82,   174,   237,   222,
  1266.    191,   224,   177,    67,   315,   180,   181,   320,    72,   327,
  1267.     77,   324,   235,   398,    81,   326,   191,   201,   679,   680,
  1268.     65,   332,    82,     3,     4,    59,    60,   323,   339,    77,
  1269.    341,    77,   841,    81,   211,    81,   226,   216,   271,   218,
  1270.    279,   264,     3,   581,    82,   590,   639,   270,    30,   219,
  1271.     59,   221,   861,    30,   809,   864,   218,   866,   506,    59,
  1272.    222,   238,   224,     3,     4,   874,     3,    78,    50,    30,
  1273.      7,    76,     3,     4,     3,   237,    81,    59,    60,   499,
  1274.    612,     3,     4,    76,   261,   262,   319,    67,    81,    50,
  1275.    274,   359,    72,    30,   269,    30,    59,   906,    59,    60,
  1276.     76,    30,    82,   500,   289,    81,   329,   504,    30,    78,
  1277.    287,     3,     4,    50,   707,     7,    38,   279,    50,    51,
  1278.     52,    50,    59,   300,    59,    60,    59,    67,    50,   320,
  1279.     59,   532,    72,   324,    59,   583,    67,    59,    30,   457,
  1280.    560,    72,    82,    77,    78,   320,   464,   465,   323,   324,
  1281.     72,    82,   549,    76,    30,   552,   542,   334,    50,     3,
  1282.      4,    81,   352,   564,    48,    49,   405,    59,    68,    69,
  1283.     70,    76,    27,   396,     9,    30,    81,    75,    78,    63,
  1284.     72,    36,   416,    59,    60,   241,   242,   243,   603,   245,
  1285.    246,   247,   248,   249,   250,   251,   252,   253,   254,   255,
  1286.    256,   257,   258,   493,    76,   473,    50,    76,   681,   416,
  1287.     77,     3,     4,   388,   398,   635,    77,   637,   666,   394,
  1288.     81,   814,    77,    67,   409,   493,    81,    38,    72,    82,
  1289.     76,    59,    60,   412,     1,    81,   554,     4,    30,     6,
  1290.      7,    59,    60,   405,   555,    12,    13,    14,    76,   560,
  1291.    429,   430,   653,    77,   416,   401,   602,    81,    50,   401,
  1292.     36,    28,   608,    59,   679,   680,   412,    59,   430,    77,
  1293.    412,   686,   687,    81,   604,    81,   677,   333,    77,   609,
  1294.     72,    59,    81,   703,    68,    69,    70,   605,   606,   607,
  1295.    535,   536,   610,   611,    78,    59,    60,   443,    77,   567,
  1296.     67,   443,    81,    77,    78,    72,    68,    69,    70,    67,
  1297.     77,    78,   556,   631,   491,   494,    78,    68,    69,    70,
  1298.     77,    77,   513,   709,    81,   636,   637,    78,     3,     4,
  1299.     77,   779,    76,   495,    81,   514,   515,    76,   513,   657,
  1300.    658,   659,    77,    77,   535,   536,    81,   526,   527,    82,
  1301.    594,   595,   498,   515,   531,    30,   498,   743,   589,   593,
  1302.    535,   536,    76,    38,    76,   527,    77,   546,   547,    59,
  1303.     60,   604,   585,   586,    10,    50,   609,   695,    77,    78,
  1304.     76,   556,   559,   574,    59,   547,   593,    63,   856,   620,
  1305.    858,    82,   703,    59,    60,    93,    94,    72,   589,   574,
  1306.     54,    55,   579,    57,    58,    59,    60,    76,     3,     4,
  1307.     27,   590,   603,   588,   589,     9,    83,    77,    36,   594,
  1308.    595,    78,   740,    76,   480,    76,     3,     4,   603,   620,
  1309.      7,   593,    78,    78,   900,    76,    78,     3,     4,     5,
  1310.      6,     7,   908,   618,   590,   620,     3,     4,   590,    76,
  1311.     38,    76,    76,    30,    76,    38,   842,     1,    63,   682,
  1312.      4,     5,     6,     7,    59,    76,    10,   644,    12,    13,
  1313.     14,    83,    67,    50,    83,   836,    76,    72,    82,    63,
  1314.     59,    36,    59,    60,    28,   729,   709,    76,   679,   680,
  1315.     76,    83,   548,    78,    81,   686,   687,   883,   884,    32,
  1316.     81,    67,    59,    83,   679,   680,    72,   563,    77,    76,
  1317.     67,   686,   687,    54,    55,    72,    57,    58,    59,    60,
  1318.    743,    77,   699,    67,    76,     3,    77,    38,    72,    83,
  1319.    721,   754,   709,    63,    76,    76,    38,     1,    82,    78,
  1320.      4,     5,     6,     7,    38,   856,   721,   858,    12,    13,
  1321.     14,     6,     7,    78,   729,    81,    63,    12,    13,    14,
  1322.      3,     4,    38,   709,    28,   809,   743,   709,   791,    81,
  1323.    626,    36,   795,   758,   630,    78,    63,    83,   755,   802,
  1324.    811,    78,    38,     7,   763,   764,     1,    30,    59,     4,
  1325.      5,     6,     7,    59,   817,    77,    59,    12,    13,    14,
  1326.    823,    38,   764,    67,    77,    38,    16,    50,    72,    77,
  1327.    833,    78,    59,    28,    59,   671,    59,    60,    82,   842,
  1328.    811,    40,    41,    42,    43,    44,    45,    46,    47,    48,
  1329.     49,    50,    51,    52,   809,    77,   811,   693,    77,    77,
  1330.    696,    46,    47,    48,    49,    50,    51,    52,     1,    63,
  1331.     76,     4,    67,     6,     7,   711,    17,    72,   714,    12,
  1332.     13,    14,     9,    76,   887,   842,    77,    82,    77,     5,
  1333.      6,     7,   728,    76,    76,    28,    12,    13,    14,     1,
  1334.     77,     3,     4,     5,     6,     7,     8,     9,    77,    11,
  1335.     12,    13,    14,    15,   750,    17,    18,    19,    20,    21,
  1336.     22,    23,    24,    25,    26,    27,    28,    29,    77,    31,
  1337.     59,    33,    34,    81,    67,    68,    69,    70,    40,    72,
  1338.    776,    43,    77,    77,    77,    78,    48,    49,    50,    77,
  1339.     76,    76,    54,    55,     0,     0,     3,    59,    60,   532,
  1340.    794,   315,    64,   636,    66,    67,    80,   626,   277,    71,
  1341.     72,   531,   555,    75,   336,    77,    78,    79,    80,   211,
  1342.     82,   334,   818,     1,   561,     3,     4,     5,     6,     7,
  1343.      8,     9,   828,    11,    12,    13,    14,    15,   341,    17,
  1344.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1345.     28,    29,   842,    31,   636,    33,    34,    48,    49,    50,
  1346.     51,    52,    40,   842,   888,    43,   404,   890,   404,   539,
  1347.     48,    49,    50,    58,   523,   729,    54,    55,   595,   395,
  1348.    726,    59,    60,   516,   498,   721,    64,     3,    66,    67,
  1349.    288,     7,   493,    71,    72,   400,   400,    75,   653,    77,
  1350.    567,    79,    80,     1,    82,     3,     4,    -1,    -1,   359,
  1351.      8,     9,    -1,    11,    30,    -1,    -1,    15,    -1,    17,
  1352.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1353.     -1,    29,    -1,    31,    50,    33,    34,    -1,    27,    -1,
  1354.     -1,    30,    40,    59,    60,    43,    -1,    36,    -1,    -1,
  1355.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1356.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1357.     59,    60,    -1,    71,    72,    -1,    -1,    75,    -1,    77,
  1358.     78,    79,    80,     1,    82,     3,     4,    -1,    77,    -1,
  1359.      8,     9,    81,    11,    -1,    -1,    -1,    15,    -1,    17,
  1360.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1361.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1362.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1363.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1364.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1365.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    77,
  1366.     78,    79,    80,     1,    82,     3,     4,    -1,    -1,    -1,
  1367.      8,     9,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
  1368.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1369.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1370.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1371.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1372.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1373.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    77,
  1374.     -1,    79,    80,     1,    82,     3,     4,    -1,    -1,    -1,
  1375.      8,     9,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
  1376.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1377.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1378.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1379.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1380.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1381.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    77,
  1382.     -1,    79,    80,     1,    82,     3,     4,    -1,     6,     7,
  1383.      8,     9,    -1,    11,    12,    13,    14,    41,    42,    43,
  1384.     44,    45,    46,    47,    48,    49,    50,    51,    52,    -1,
  1385.     28,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1386.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1387.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1388.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1389.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    -1,
  1390.     -1,    79,    80,     1,    82,     3,     4,    -1,    -1,    -1,
  1391.      8,     9,    37,    11,    39,    40,    41,    42,    43,    44,
  1392.     45,    46,    47,    48,    49,    50,    51,    52,    -1,    -1,
  1393.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1394.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1395.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1396.     58,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1397.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    -1,
  1398.     78,    79,    80,     1,    82,     3,     4,    -1,    -1,    -1,
  1399.      8,     9,    -1,    11,    42,    43,    44,    45,    46,    47,
  1400.     48,    49,    50,    51,    52,    -1,    -1,    -1,    -1,    -1,
  1401.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1402.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1403.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1404.     58,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1405.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,    -1,    -1,
  1406.     78,    79,    80,     1,    82,     3,     4,    -1,    -1,    -1,
  1407.      8,     9,    -1,    11,    43,    44,    45,    46,    47,    48,
  1408.     49,    50,    51,    52,    -1,    -1,    -1,    -1,    -1,    -1,
  1409.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1410.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1411.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1412.     58,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    67,
  1413.     -1,    -1,    -1,    71,    72,    -1,    -1,    75,     1,    -1,
  1414.      3,    79,    80,    -1,    82,     8,     9,     1,    11,    -1,
  1415.      4,     5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,
  1416.     14,    -1,    -1,    -1,    -1,    -1,    29,    -1,    31,    -1,
  1417.     33,    34,    -1,    27,    28,    -1,    30,    40,    -1,    -1,
  1418.     43,    -1,    36,    -1,    -1,    48,    49,    50,    -1,    -1,
  1419.     -1,    54,    55,    -1,    -1,    -1,    59,    60,    -1,    -1,
  1420.     -1,    64,    -1,    66,    -1,    59,    60,    -1,    71,    -1,
  1421.     -1,    -1,    75,    67,    -1,    -1,    79,    80,    72,    82,
  1422.     -1,    -1,    -1,    77,    -1,    -1,     1,    81,    82,     4,
  1423.      5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,    14,
  1424.     -1,    -1,    -1,    -1,    -1,     1,    -1,    -1,     4,     5,
  1425.      6,     7,    27,    28,    -1,    30,    12,    13,    14,    -1,
  1426.     -1,    36,    -1,    -1,     1,    -1,    -1,     4,     5,     6,
  1427.      7,    27,    28,    -1,    30,    12,    13,    14,    -1,    -1,
  1428.     36,    -1,    -1,    -1,    59,    60,    -1,    -1,    -1,    -1,
  1429.     -1,    28,    67,    -1,    -1,    -1,    -1,    72,    -1,    -1,
  1430.     -1,    -1,    77,    -1,    -1,    -1,    81,    82,    -1,    -1,
  1431.     -1,    67,     3,    -1,    -1,    -1,    72,     8,     9,    -1,
  1432.     11,    77,    -1,    -1,    -1,    81,    82,    -1,    -1,    -1,
  1433.     67,    -1,    -1,    -1,    -1,    72,    -1,    -1,    29,    -1,
  1434.     31,    -1,    33,    34,    -1,    82,    -1,    -1,    -1,    40,
  1435.     -1,    -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,
  1436.     -1,    -1,    -1,    54,    55,    -1,    -1,    -1,    59,    60,
  1437.     -1,     3,    -1,    64,    -1,    66,     8,     9,    -1,    11,
  1438.     71,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,    80,
  1439.     -1,    -1,    83,    -1,    -1,    -1,    -1,    29,    -1,    31,
  1440.     -1,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,    -1,
  1441.     -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,
  1442.     -1,    -1,    54,    55,    -1,    -1,    -1,    59,    60,    -1,
  1443.      3,    -1,    64,    -1,    66,     8,     9,    -1,    11,    71,
  1444.     -1,    -1,    -1,    75,    -1,    -1,    -1,    79,    80,    -1,
  1445.     -1,    83,    -1,    -1,    -1,    -1,    29,    -1,    31,    -1,
  1446.     33,    34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,
  1447.     43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,
  1448.     -1,    54,    55,    -1,    -1,    -1,    59,    60,    -1,     3,
  1449.     -1,    64,    -1,    66,     8,     9,    -1,    11,    71,    -1,
  1450.     -1,    -1,    75,    -1,    -1,    -1,    79,    80,    -1,    -1,
  1451.     83,    -1,    -1,    -1,    -1,    29,    -1,    31,    -1,    33,
  1452.     34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,
  1453.     -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,    -1,
  1454.     54,    55,    -1,    -1,    -1,    59,    60,    -1,     3,    -1,
  1455.     64,    -1,    66,     8,     9,    -1,    11,    71,    -1,    -1,
  1456.     -1,    75,    -1,    -1,    -1,    79,    80,    -1,    -1,    83,
  1457.     -1,    -1,    -1,    -1,    29,    -1,    31,    -1,    33,    34,
  1458.     -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,    -1,
  1459.     -1,    -1,    -1,    48,    49,    50,    -1,    -1,    -1,    54,
  1460.     55,    -1,    -1,    -1,    59,    60,    -1,    -1,    -1,    64,
  1461.     -1,    66,    -1,    -1,    -1,    -1,    71,    -1,    -1,    -1,
  1462.     75,    -1,    -1,    -1,    79,    80,    -1,    -1,    83,     3,
  1463.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  1464.     14,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1465.     24,    25,    26,    27,    28,    29,    -1,    31,    -1,    33,
  1466.     34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,
  1467.     -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,    -1,
  1468.     54,    55,    -1,    -1,    -1,    59,    60,    -1,    -1,    -1,
  1469.     64,    -1,    66,    67,    -1,    -1,    -1,    71,    72,    -1,
  1470.     -1,    75,    -1,    77,    -1,    79,    80,    -1,    82,     3,
  1471.      4,    -1,    -1,    -1,     8,     9,    -1,    11,    -1,    -1,
  1472.     -1,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1473.     24,    25,    26,    27,    -1,    29,    -1,    31,    -1,    33,
  1474.     34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,
  1475.     -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,    -1,
  1476.     54,    55,    -1,     3,    -1,    59,    60,    -1,     8,     9,
  1477.     64,    11,    66,    67,    -1,    -1,    -1,    71,    72,    -1,
  1478.     -1,    75,    -1,    77,    -1,    79,    80,    -1,    82,    29,
  1479.     -1,    31,    -1,    33,    34,    -1,    -1,    -1,    -1,    -1,
  1480.     40,    -1,    -1,    43,    -1,    -1,    -1,    -1,    48,    49,
  1481.     50,    -1,    -1,    -1,    54,    55,    -1,    -1,    -1,    59,
  1482.     60,    -1,    -1,    -1,    64,    -1,    66,    -1,    -1,    -1,
  1483.     -1,    71,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,
  1484.     80,    -1,    82,     3,     4,    -1,     6,     7,    -1,    -1,
  1485.     -1,    11,    12,    13,    14,    15,    16,    17,    18,    19,
  1486.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  1487.     -1,     3,     4,    -1,     6,     7,     8,     9,    38,    11,
  1488.     12,    13,    14,    44,    45,    46,    47,    48,    49,    50,
  1489.     51,    52,    -1,    -1,    -1,    -1,    28,    29,    -1,    31,
  1490.     -1,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,    -1,
  1491.     -1,    43,    72,    -1,    -1,    -1,    48,    49,    50,    -1,
  1492.     -1,    81,    54,    55,    -1,     3,    -1,    59,    60,    -1,
  1493.      8,     9,    64,    11,    66,    67,    -1,    -1,    -1,    71,
  1494.     72,    -1,    -1,    75,    -1,    -1,    -1,    79,    80,    -1,
  1495.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1496.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1497.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,     3,
  1498.     -1,    59,    60,    -1,     8,     9,    64,    11,    66,    67,
  1499.     -1,    -1,    -1,    71,    -1,    -1,    -1,    75,    -1,    -1,
  1500.     -1,    79,    80,    -1,    -1,    29,    -1,    31,    -1,    33,
  1501.     34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,
  1502.     -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,    -1,
  1503.     54,    55,    -1,     3,    -1,    59,    60,    -1,     8,     9,
  1504.     64,    11,    66,    -1,    -1,    -1,    -1,    71,    -1,    -1,
  1505.     -1,    75,    -1,    77,    -1,    79,    80,    -1,    -1,    29,
  1506.     -1,    31,    -1,    33,    34,    -1,    -1,    -1,    -1,    -1,
  1507.     40,    -1,    -1,    43,    -1,    -1,    -1,    -1,    48,    49,
  1508.     50,    -1,    -1,    -1,    54,    55,    -1,     3,    -1,    59,
  1509.     60,    -1,     8,     9,    64,    11,    66,    -1,    -1,    -1,
  1510.     -1,    71,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,
  1511.     80,    -1,    -1,    29,    -1,    31,    -1,    33,    34,    -1,
  1512.     -1,    -1,    -1,    -1,    40,    -1,    -1,    43,    -1,    -1,
  1513.     -1,    -1,    48,    49,    50,    -1,    -1,    -1,    54,    55,
  1514.     -1,     3,    -1,    59,    60,    -1,     8,     9,    64,    11,
  1515.     66,    -1,    -1,    -1,    -1,    71,    -1,    -1,    -1,    75,
  1516.     -1,    -1,    -1,    79,    80,    -1,    -1,    29,    -1,    31,
  1517.     -1,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,    -1,
  1518.     -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,
  1519.     -1,    -1,    54,    55,    -1,     3,    -1,    59,    60,    -1,
  1520.      8,     9,    64,    11,    66,    -1,    -1,    -1,    -1,    71,
  1521.     -1,    -1,    -1,    75,    -1,    -1,    -1,    79,    80,    -1,
  1522.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1523.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1524.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1525.     -1,    59,    60,    -1,    -1,    -1,    64,    -1,    66,    -1,
  1526.     -1,    -1,    -1,    71,    -1,    -1,    -1,    75,    -1,    -1,
  1527.      1,    79,    80,     4,    -1,     6,     7,    -1,    -1,    -1,
  1528.     -1,    12,    13,    14,    45,    46,    47,    48,    49,    50,
  1529.     51,    52,    -1,    -1,    -1,    -1,     1,    28,     3,     4,
  1530.      5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,    14,
  1531.     -1,    -1,    -1,    -1,    -1,     1,    -1,     3,     4,     5,
  1532.      6,     7,    27,    28,    10,    30,    12,    13,    14,    -1,
  1533.     -1,    -1,    -1,    -1,    -1,    -1,    67,    68,    69,    70,
  1534.     -1,    72,    28,    48,    49,    50,    77,    78,    -1,    -1,
  1535.     -1,    -1,    -1,    -1,    59,    -1,    61,    62,    63,    -1,
  1536.     -1,    -1,    67,    -1,    -1,    -1,    71,    72,    73,    74,
  1537.     -1,     1,    77,     3,     4,     5,     6,     7,    -1,    -1,
  1538.     -1,    67,    12,    13,    14,    -1,    72,    -1,    -1,    -1,
  1539.     76,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    28,     1,
  1540.     30,     3,     4,     5,     6,     7,    -1,    -1,    -1,    -1,
  1541.     12,    13,    14,    -1,    -1,    -1,    -1,    -1,    48,    49,
  1542.     50,    -1,    -1,    -1,    -1,    -1,    28,     1,    30,    59,
  1543.      4,     5,     6,     7,    -1,    -1,    10,    67,    12,    13,
  1544.     14,    -1,    72,     4,    -1,     6,     7,    77,    50,    -1,
  1545.     -1,    12,    13,    14,    28,    -1,    -1,    59,    -1,    -1,
  1546.     -1,    -1,    -1,    -1,    -1,    67,    -1,    28,    -1,    -1,
  1547.     72,     4,     5,     6,     7,    77,    -1,    -1,    -1,    12,
  1548.     13,    14,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1549.     -1,    -1,    -1,    67,    -1,    28,    -1,    -1,    72,    -1,
  1550.     -1,    -1,    76,    -1,    -1,    -1,    67,    -1,    -1,    -1,
  1551.     -1,    72,     4,     5,     6,     7,    77,    78,    -1,    -1,
  1552.     12,    13,    14,     4,     5,     6,     7,    -1,    -1,    -1,
  1553.     -1,    12,    13,    14,    67,    -1,    28,    -1,    -1,    72,
  1554.      4,     5,     6,     7,    77,    -1,    -1,    28,    12,    13,
  1555.     14,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1556.     -1,    -1,    -1,    -1,    28,    -1,    -1,    -1,    -1,    -1,
  1557.     -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    -1,    -1,
  1558.     72,    -1,    -1,    -1,    -1,    77,    67,    -1,    -1,    -1,
  1559.     -1,    72,    -1,    -1,    -1,    -1,    77,    -1,    -1,    -1,
  1560.     -1,    -1,    -1,    67,    -1,    -1,     3,     4,    72,     6,
  1561.      7,    -1,    -1,    77,    11,    12,    13,    14,    15,    16,
  1562.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  1563.     27,    28,    29,    -1,     3,     4,    -1,     6,     7,    -1,
  1564.     -1,    38,    11,    12,    13,    14,    15,    16,    17,    18,
  1565.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  1566.     29,    -1,    59,    -1,    -1,    -1,    -1,    -1,    -1,    38,
  1567.      3,     4,    -1,     6,     7,    72,    -1,    -1,    11,    12,
  1568.     13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
  1569.     23,    24,    25,    26,    27,    28,    29,    -1,     3,     4,
  1570.     -1,     6,     7,    72,    -1,    38,    11,    12,    13,    14,
  1571.     15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  1572.     25,    26,    27,    28,    29,    -1,     4,    -1,     6,     7,
  1573.     -1,    -1,    -1,    38,    12,    13,    14,    -1,    -1,    72,
  1574.     -1,    -1,    -1,    -1,    -1,     4,     5,     6,     7,    -1,
  1575.     28,    10,    30,    12,    13,    14,     4,     5,     6,     7,
  1576.     -1,    -1,    10,    -1,    12,    13,    14,    72,    -1,    28,
  1577.     -1,    -1,    50,    -1,    -1,     4,     5,     6,     7,    -1,
  1578.     28,    59,    60,    12,    13,    14,    -1,    -1,     4,    67,
  1579.      6,     7,    -1,    -1,    72,    -1,    12,    13,    14,    28,
  1580.     -1,     4,     5,     6,     7,    -1,    -1,    -1,    67,    12,
  1581.     13,    14,    28,    72,    -1,    -1,    -1,    -1,     4,    67,
  1582.      6,     7,    -1,    -1,    72,    28,    12,    13,    14,    -1,
  1583.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    67,    -1,
  1584.     -1,    -1,    28,    72,    -1,    -1,    -1,    -1,    -1,    -1,
  1585.     -1,    67,    -1,    -1,    -1,    -1,    72,    -1,    -1,    -1,
  1586.     -1,    -1,    10,    -1,    67,    -1,    -1,    -1,    -1,    72,
  1587.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1588.     -1,    67,    -1,    -1,    -1,    -1,    72,    35,    36,    37,
  1589.     38,    39,    40,    41,    42,    43,    44,    45,    46,    47,
  1590.     48,    49,    50,    51,    52,    30,    -1,    -1,    -1,    -1,
  1591.     35,    36,    37,    -1,    39,    40,    41,    42,    43,    44,
  1592.     45,    46,    47,    48,    49,    50,    51,    52,    35,    36,
  1593.     37,    38,    39,    40,    41,    42,    43,    44,    45,    46,
  1594.     47,    48,    49,    50,    51,    52,    35,    36,    37,    -1,
  1595.     39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
  1596.     49,    50,    51,    52
  1597. };
  1598. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  1599. #line 3 "/usr/local/lib/bison.simple"
  1600.  
  1601. /* Skeleton output parser for bison,
  1602.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  1603.  
  1604.    This program is free software; you can redistribute it and/or modify
  1605.    it under the terms of the GNU General Public License as published by
  1606.    the Free Software Foundation; either version 1, or (at your option)
  1607.    any later version.
  1608.  
  1609.    This program is distributed in the hope that it will be useful,
  1610.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  1611.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1612.    GNU General Public License for more details.
  1613.  
  1614.    You should have received a copy of the GNU General Public License
  1615.    along with this program; if not, write to the Free Software
  1616.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1617.  
  1618.  
  1619. #ifndef alloca
  1620. #ifdef __GNUC__
  1621. #define alloca __builtin_alloca
  1622. #else /* not GNU C.  */
  1623. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  1624. #include <alloca.h>
  1625. #else /* not sparc */
  1626. #if defined (MSDOS) && !defined (__TURBOC__)
  1627. #include <malloc.h>
  1628. #else /* not MSDOS, or __TURBOC__ */
  1629. #if defined(_AIX)
  1630. #include <malloc.h>
  1631.  #pragma alloca
  1632. #else /* not MSDOS, __TURBOC__, or _AIX */
  1633. #ifdef __hpux
  1634. #ifdef __cplusplus
  1635. extern "C" {
  1636. void *alloca (unsigned int);
  1637. };
  1638. #else /* not __cplusplus */
  1639. void *alloca ();
  1640. #endif /* not __cplusplus */
  1641. #endif /* __hpux */
  1642. #endif /* not _AIX */
  1643. #endif /* not MSDOS, or __TURBOC__ */
  1644. #endif /* not sparc.  */
  1645. #endif /* not GNU C.  */
  1646. #endif /* alloca not defined.  */
  1647.  
  1648. /* This is the parser code that is written into each bison parser
  1649.   when the %semantic_parser declaration is not specified in the grammar.
  1650.   It was written by Richard Stallman by simplifying the hairy parser
  1651.   used when %semantic_parser is specified.  */
  1652.  
  1653. /* Note: there must be only one dollar sign in this file.
  1654.    It is replaced by the list of actions, each action
  1655.    as one case of the switch.  */
  1656.  
  1657. #define yyerrok        (yyerrstatus = 0)
  1658. #define yyclearin    (yychar = YYEMPTY)
  1659. #define YYEMPTY        -2
  1660. #define YYEOF        0
  1661. #define YYACCEPT    return(0)
  1662. #define YYABORT     return(1)
  1663. #define YYERROR        goto yyerrlab1
  1664. /* Like YYERROR except do call yyerror.
  1665.    This remains here temporarily to ease the
  1666.    transition to the new meaning of YYERROR, for GCC.
  1667.    Once GCC version 2 has supplanted version 1, this can go.  */
  1668. #define YYFAIL        goto yyerrlab
  1669. #define YYRECOVERING()  (!!yyerrstatus)
  1670. #define YYBACKUP(token, value) \
  1671. do                                \
  1672.   if (yychar == YYEMPTY && yylen == 1)                \
  1673.     { yychar = (token), yylval = (value);            \
  1674.       yychar1 = YYTRANSLATE (yychar);                \
  1675.       YYPOPSTACK;                        \
  1676.       goto yybackup;                        \
  1677.     }                                \
  1678.   else                                \
  1679.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  1680. while (0)
  1681.  
  1682. #define YYTERROR    1
  1683. #define YYERRCODE    256
  1684.  
  1685. #ifndef YYPURE
  1686. #define YYLEX        yylex()
  1687. #endif
  1688.  
  1689. #ifdef YYPURE
  1690. #ifdef YYLSP_NEEDED
  1691. #define YYLEX        yylex(&yylval, &yylloc)
  1692. #else
  1693. #define YYLEX        yylex(&yylval)
  1694. #endif
  1695. #endif
  1696.  
  1697. /* If nonreentrant, generate the variables here */
  1698.  
  1699. #ifndef YYPURE
  1700.  
  1701. int    yychar;            /*  the lookahead symbol        */
  1702. YYSTYPE    yylval;            /*  the semantic value of the        */
  1703.                 /*  lookahead symbol            */
  1704.  
  1705. #ifdef YYLSP_NEEDED
  1706. YYLTYPE yylloc;            /*  location data for the lookahead    */
  1707.                 /*  symbol                */
  1708. #endif
  1709.  
  1710. int yynerrs;            /*  number of parse errors so far       */
  1711. #endif  /* not YYPURE */
  1712.  
  1713. #if YYDEBUG != 0
  1714. int yydebug;            /*  nonzero means print parse trace    */
  1715. /* Since this is uninitialized, it does not stop multiple parsers
  1716.    from coexisting.  */
  1717. #endif
  1718.  
  1719. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  1720.  
  1721. #ifndef    YYINITDEPTH
  1722. #define YYINITDEPTH 200
  1723. #endif
  1724.  
  1725. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  1726.     (effective only if the built-in stack extension method is used).  */
  1727.  
  1728. #if YYMAXDEPTH == 0
  1729. #undef YYMAXDEPTH
  1730. #endif
  1731.  
  1732. #ifndef YYMAXDEPTH
  1733. #define YYMAXDEPTH 10000
  1734. #endif
  1735.  
  1736. /* Prevent warning if -Wstrict-prototypes.  */
  1737. #ifdef __GNUC__
  1738. int yyparse (void);
  1739. #endif
  1740.  
  1741. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  1742. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  1743. #else                /* not GNU C or C++ */
  1744. #ifndef __cplusplus
  1745.  
  1746. /* This is the most reliable way to avoid incompatibilities
  1747.    in available built-in functions on various systems.  */
  1748. static void
  1749. __yy_bcopy (from, to, count)
  1750.      char *from;
  1751.      char *to;
  1752.      int count;
  1753. {
  1754.   register char *f = from;
  1755.   register char *t = to;
  1756.   register int i = count;
  1757.  
  1758.   while (i-- > 0)
  1759.     *t++ = *f++;
  1760. }
  1761.  
  1762. #else /* __cplusplus */
  1763.  
  1764. /* This is the most reliable way to avoid incompatibilities
  1765.    in available built-in functions on various systems.  */
  1766. static void
  1767. __yy_bcopy (char *from, char *to, int count)
  1768. {
  1769.   register char *f = from;
  1770.   register char *t = to;
  1771.   register int i = count;
  1772.  
  1773.   while (i-- > 0)
  1774.     *t++ = *f++;
  1775. }
  1776.  
  1777. #endif
  1778. #endif
  1779.  
  1780. #line 184 "/usr/local/lib/bison.simple"
  1781.  
  1782. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  1783.    into yyparse.  The argument should have type void *.
  1784.    It should actually point to an object.
  1785.    Grammar actions can access the variable by casting it
  1786.    to the proper pointer type.  */
  1787.  
  1788. #ifdef YYPARSE_PARAM
  1789. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  1790. #else
  1791. #define YYPARSE_PARAM
  1792. #define YYPARSE_PARAM_DECL
  1793. #endif
  1794.  
  1795. int
  1796. yyparse(YYPARSE_PARAM)
  1797.      YYPARSE_PARAM_DECL
  1798. {
  1799.   register int yystate;
  1800.   register int yyn;
  1801.   register short *yyssp;
  1802.   register YYSTYPE *yyvsp;
  1803.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  1804.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  1805.  
  1806.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  1807.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  1808.  
  1809.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  1810.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  1811.  
  1812. #ifdef YYLSP_NEEDED
  1813.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  1814.   YYLTYPE *yyls = yylsa;
  1815.   YYLTYPE *yylsp;
  1816.  
  1817. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  1818. #else
  1819. #define YYPOPSTACK   (yyvsp--, yyssp--)
  1820. #endif
  1821.  
  1822.   int yystacksize = YYINITDEPTH;
  1823.  
  1824. #ifdef YYPURE
  1825.   int yychar;
  1826.   YYSTYPE yylval;
  1827.   int yynerrs;
  1828. #ifdef YYLSP_NEEDED
  1829.   YYLTYPE yylloc;
  1830. #endif
  1831. #endif
  1832.  
  1833.   YYSTYPE yyval;        /*  the variable used to return        */
  1834.                 /*  semantic values from the action    */
  1835.                 /*  routines                */
  1836.  
  1837.   int yylen;
  1838.  
  1839. #if YYDEBUG != 0
  1840.   if (yydebug)
  1841.     fprintf(stderr, "Starting parse\n");
  1842. #endif
  1843.  
  1844.   yystate = 0;
  1845.   yyerrstatus = 0;
  1846.   yynerrs = 0;
  1847.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  1848.  
  1849.   /* Initialize stack pointers.
  1850.      Waste one element of value and location stack
  1851.      so that they stay on the same level as the state stack.
  1852.      The wasted elements are never initialized.  */
  1853.  
  1854.   yyssp = yyss - 1;
  1855.   yyvsp = yyvs;
  1856. #ifdef YYLSP_NEEDED
  1857.   yylsp = yyls;
  1858. #endif
  1859.  
  1860. /* Push a new state, which is found in  yystate  .  */
  1861. /* In all cases, when you get here, the value and location stacks
  1862.    have just been pushed. so pushing a state here evens the stacks.  */
  1863. yynewstate:
  1864.  
  1865.   *++yyssp = yystate;
  1866.  
  1867.   if (yyssp >= yyss + yystacksize - 1)
  1868.     {
  1869.       /* Give user a chance to reallocate the stack */
  1870.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  1871.       YYSTYPE *yyvs1 = yyvs;
  1872.       short *yyss1 = yyss;
  1873. #ifdef YYLSP_NEEDED
  1874.       YYLTYPE *yyls1 = yyls;
  1875. #endif
  1876.  
  1877.       /* Get the current used size of the three stacks, in elements.  */
  1878.       int size = yyssp - yyss + 1;
  1879.  
  1880. #ifdef yyoverflow
  1881.       /* Each stack pointer address is followed by the size of
  1882.      the data in use in that stack, in bytes.  */
  1883. #ifdef YYLSP_NEEDED
  1884.       /* This used to be a conditional around just the two extra args,
  1885.      but that might be undefined if yyoverflow is a macro.  */
  1886.       yyoverflow("parser stack overflow",
  1887.          &yyss1, size * sizeof (*yyssp),
  1888.          &yyvs1, size * sizeof (*yyvsp),
  1889.          &yyls1, size * sizeof (*yylsp),
  1890.          &yystacksize);
  1891. #else
  1892.       yyoverflow("parser stack overflow",
  1893.          &yyss1, size * sizeof (*yyssp),
  1894.          &yyvs1, size * sizeof (*yyvsp),
  1895.          &yystacksize);
  1896. #endif
  1897.  
  1898.       yyss = yyss1; yyvs = yyvs1;
  1899. #ifdef YYLSP_NEEDED
  1900.       yyls = yyls1;
  1901. #endif
  1902. #else /* no yyoverflow */
  1903.       /* Extend the stack our own way.  */
  1904.       if (yystacksize >= YYMAXDEPTH)
  1905.     {
  1906.       yyerror("parser stack overflow");
  1907.       return 2;
  1908.     }
  1909.       yystacksize *= 2;
  1910.       if (yystacksize > YYMAXDEPTH)
  1911.     yystacksize = YYMAXDEPTH;
  1912.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  1913.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  1914.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  1915.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  1916. #ifdef YYLSP_NEEDED
  1917.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  1918.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  1919. #endif
  1920. #endif /* no yyoverflow */
  1921.  
  1922.       yyssp = yyss + size - 1;
  1923.       yyvsp = yyvs + size - 1;
  1924. #ifdef YYLSP_NEEDED
  1925.       yylsp = yyls + size - 1;
  1926. #endif
  1927.  
  1928. #if YYDEBUG != 0
  1929.       if (yydebug)
  1930.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  1931. #endif
  1932.  
  1933.       if (yyssp >= yyss + yystacksize - 1)
  1934.     YYABORT;
  1935.     }
  1936.  
  1937. #if YYDEBUG != 0
  1938.   if (yydebug)
  1939.     fprintf(stderr, "Entering state %d\n", yystate);
  1940. #endif
  1941.  
  1942.   goto yybackup;
  1943.  yybackup:
  1944.  
  1945. /* Do appropriate processing given the current state.  */
  1946. /* Read a lookahead token if we need one and don't already have one.  */
  1947. /* yyresume: */
  1948.  
  1949.   /* First try to decide what to do without reference to lookahead token.  */
  1950.  
  1951.   yyn = yypact[yystate];
  1952.   if (yyn == YYFLAG)
  1953.     goto yydefault;
  1954.  
  1955.   /* Not known => get a lookahead token if don't already have one.  */
  1956.  
  1957.   /* yychar is either YYEMPTY or YYEOF
  1958.      or a valid token in external form.  */
  1959.  
  1960.   if (yychar == YYEMPTY)
  1961.     {
  1962. #if YYDEBUG != 0
  1963.       if (yydebug)
  1964.     fprintf(stderr, "Reading a token: ");
  1965. #endif
  1966.       yychar = YYLEX;
  1967.     }
  1968.  
  1969.   /* Convert token to internal form (in yychar1) for indexing tables with */
  1970.  
  1971.   if (yychar <= 0)        /* This means end of input. */
  1972.     {
  1973.       yychar1 = 0;
  1974.       yychar = YYEOF;        /* Don't call YYLEX any more */
  1975.  
  1976. #if YYDEBUG != 0
  1977.       if (yydebug)
  1978.     fprintf(stderr, "Now at end of input.\n");
  1979. #endif
  1980.     }
  1981.   else
  1982.     {
  1983.       yychar1 = YYTRANSLATE(yychar);
  1984.  
  1985. #if YYDEBUG != 0
  1986.       if (yydebug)
  1987.     {
  1988.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  1989.       /* Give the individual parser a way to print the precise meaning
  1990.          of a token, for further debugging info.  */
  1991. #ifdef YYPRINT
  1992.       YYPRINT (stderr, yychar, yylval);
  1993. #endif
  1994.       fprintf (stderr, ")\n");
  1995.     }
  1996. #endif
  1997.     }
  1998.  
  1999.   yyn += yychar1;
  2000.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  2001.     goto yydefault;
  2002.  
  2003.   yyn = yytable[yyn];
  2004.  
  2005.   /* yyn is what to do for this token type in this state.
  2006.      Negative => reduce, -yyn is rule number.
  2007.      Positive => shift, yyn is new state.
  2008.        New state is final state => don't bother to shift,
  2009.        just return success.
  2010.      0, or most negative number => error.  */
  2011.  
  2012.   if (yyn < 0)
  2013.     {
  2014.       if (yyn == YYFLAG)
  2015.     goto yyerrlab;
  2016.       yyn = -yyn;
  2017.       goto yyreduce;
  2018.     }
  2019.   else if (yyn == 0)
  2020.     goto yyerrlab;
  2021.  
  2022.   if (yyn == YYFINAL)
  2023.     YYACCEPT;
  2024.  
  2025.   /* Shift the lookahead token.  */
  2026.  
  2027. #if YYDEBUG != 0
  2028.   if (yydebug)
  2029.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  2030. #endif
  2031.  
  2032.   /* Discard the token being shifted unless it is eof.  */
  2033.   if (yychar != YYEOF)
  2034.     yychar = YYEMPTY;
  2035.  
  2036.   *++yyvsp = yylval;
  2037. #ifdef YYLSP_NEEDED
  2038.   *++yylsp = yylloc;
  2039. #endif
  2040.  
  2041.   /* count tokens shifted since error; after three, turn off error status.  */
  2042.   if (yyerrstatus) yyerrstatus--;
  2043.  
  2044.   yystate = yyn;
  2045.   goto yynewstate;
  2046.  
  2047. /* Do the default action for the current state.  */
  2048. yydefault:
  2049.  
  2050.   yyn = yydefact[yystate];
  2051.   if (yyn == 0)
  2052.     goto yyerrlab;
  2053.  
  2054. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  2055. yyreduce:
  2056.   yylen = yyr2[yyn];
  2057.   if (yylen > 0)
  2058.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  2059.  
  2060. #if YYDEBUG != 0
  2061.   if (yydebug)
  2062.     {
  2063.       int i;
  2064.  
  2065.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  2066.            yyn, yyrline[yyn]);
  2067.  
  2068.       /* Print the symbols being reduced, and their result.  */
  2069.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  2070.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  2071.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  2072.     }
  2073. #endif
  2074.  
  2075.  
  2076.   switch (yyn) {
  2077.  
  2078. case 1:
  2079. #line 231 "objc-parse.y"
  2080. { if (pedantic)
  2081.             pedwarn ("ANSI C forbids an empty source file");
  2082.           finish_file ();
  2083.         ;
  2084.     break;}
  2085. case 2:
  2086. #line 236 "objc-parse.y"
  2087. {
  2088.           /* In case there were missing closebraces,
  2089.              get us back to the global binding level.  */
  2090.           while (! global_bindings_p ())
  2091.             poplevel (0, 0, 0);
  2092.           finish_file ();
  2093.         ;
  2094.     break;}
  2095. case 3:
  2096. #line 250 "objc-parse.y"
  2097. {yyval.ttype = NULL_TREE; ;
  2098.     break;}
  2099. case 5:
  2100. #line 251 "objc-parse.y"
  2101. {yyval.ttype = NULL_TREE; ;
  2102.     break;}
  2103. case 10:
  2104. #line 259 "objc-parse.y"
  2105. { STRIP_NOPS (yyvsp[-2].ttype);
  2106.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  2107.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  2108.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  2109.             assemble_asm (yyvsp[-2].ttype);
  2110.           else
  2111.             error ("argument of `asm' is not a constant string"); ;
  2112.     break;}
  2113. case 11:
  2114. #line 270 "objc-parse.y"
  2115. { if (pedantic)
  2116.             error ("ANSI C forbids data definition with no type or storage class");
  2117.           else if (!flag_traditional)
  2118.             warning ("data definition has no type or storage class"); 
  2119.  
  2120.           current_declspecs = TREE_VALUE (declspec_stack);
  2121.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2122.           declspec_stack = TREE_CHAIN (declspec_stack);
  2123.           resume_momentary (yyvsp[-2].itype); ;
  2124.     break;}
  2125. case 12:
  2126. #line 280 "objc-parse.y"
  2127. { current_declspecs = TREE_VALUE (declspec_stack);
  2128.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2129.           declspec_stack = TREE_CHAIN (declspec_stack);
  2130.           resume_momentary (yyvsp[-2].itype); ;
  2131.     break;}
  2132. case 13:
  2133. #line 285 "objc-parse.y"
  2134. { current_declspecs = TREE_VALUE (declspec_stack);
  2135.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2136.           declspec_stack = TREE_CHAIN (declspec_stack);
  2137.           resume_momentary (yyvsp[-2].itype);  ;
  2138.     break;}
  2139. case 14:
  2140. #line 290 "objc-parse.y"
  2141. { pedwarn ("empty declaration"); ;
  2142.     break;}
  2143. case 15:
  2144. #line 292 "objc-parse.y"
  2145. { shadow_tag (yyvsp[-1].ttype); ;
  2146.     break;}
  2147. case 18:
  2148. #line 296 "objc-parse.y"
  2149. { if (pedantic)
  2150.             pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
  2151.     break;}
  2152. case 19:
  2153. #line 302 "objc-parse.y"
  2154. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, prefix_attributes,
  2155.                     NULL_TREE, 0))
  2156.             YYERROR1;
  2157.           reinit_parse_for_function (); ;
  2158.     break;}
  2159. case 20:
  2160. #line 307 "objc-parse.y"
  2161. { store_parm_decls (); ;
  2162.     break;}
  2163. case 21:
  2164. #line 309 "objc-parse.y"
  2165. { finish_function (0); 
  2166.           current_declspecs = TREE_VALUE (declspec_stack);
  2167.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2168.           declspec_stack = TREE_CHAIN (declspec_stack);
  2169.           resume_momentary (yyvsp[-5].itype); ;
  2170.     break;}
  2171. case 22:
  2172. #line 315 "objc-parse.y"
  2173. { current_declspecs = TREE_VALUE (declspec_stack);
  2174.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2175.           declspec_stack = TREE_CHAIN (declspec_stack);
  2176.           resume_momentary (yyvsp[-2].itype); ;
  2177.     break;}
  2178. case 23:
  2179. #line 320 "objc-parse.y"
  2180. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, prefix_attributes,
  2181.                     NULL_TREE, 0))
  2182.             YYERROR1;
  2183.           reinit_parse_for_function (); ;
  2184.     break;}
  2185. case 24:
  2186. #line 325 "objc-parse.y"
  2187. { store_parm_decls (); ;
  2188.     break;}
  2189. case 25:
  2190. #line 327 "objc-parse.y"
  2191. { finish_function (0); 
  2192.           current_declspecs = TREE_VALUE (declspec_stack);
  2193.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2194.           declspec_stack = TREE_CHAIN (declspec_stack);
  2195.           resume_momentary (yyvsp[-5].itype); ;
  2196.     break;}
  2197. case 26:
  2198. #line 333 "objc-parse.y"
  2199. { current_declspecs = TREE_VALUE (declspec_stack);
  2200.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2201.           declspec_stack = TREE_CHAIN (declspec_stack);
  2202.           resume_momentary (yyvsp[-2].itype); ;
  2203.     break;}
  2204. case 27:
  2205. #line 338 "objc-parse.y"
  2206. { if (! start_function (NULL_TREE, yyvsp[0].ttype,
  2207.                     prefix_attributes, NULL_TREE, 0))
  2208.             YYERROR1;
  2209.           reinit_parse_for_function (); ;
  2210.     break;}
  2211. case 28:
  2212. #line 343 "objc-parse.y"
  2213. { store_parm_decls (); ;
  2214.     break;}
  2215. case 29:
  2216. #line 345 "objc-parse.y"
  2217. { finish_function (0); 
  2218.           current_declspecs = TREE_VALUE (declspec_stack);
  2219.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2220.           declspec_stack = TREE_CHAIN (declspec_stack);
  2221.           resume_momentary (yyvsp[-5].itype); ;
  2222.     break;}
  2223. case 30:
  2224. #line 351 "objc-parse.y"
  2225. { current_declspecs = TREE_VALUE (declspec_stack);
  2226.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2227.           declspec_stack = TREE_CHAIN (declspec_stack);
  2228.           resume_momentary (yyvsp[-2].itype); ;
  2229.     break;}
  2230. case 35:
  2231. #line 365 "objc-parse.y"
  2232. { yyval.code = ADDR_EXPR; ;
  2233.     break;}
  2234. case 36:
  2235. #line 367 "objc-parse.y"
  2236. { yyval.code = NEGATE_EXPR; ;
  2237.     break;}
  2238. case 37:
  2239. #line 369 "objc-parse.y"
  2240. { yyval.code = CONVERT_EXPR; ;
  2241.     break;}
  2242. case 38:
  2243. #line 371 "objc-parse.y"
  2244. { yyval.code = PREINCREMENT_EXPR; ;
  2245.     break;}
  2246. case 39:
  2247. #line 373 "objc-parse.y"
  2248. { yyval.code = PREDECREMENT_EXPR; ;
  2249.     break;}
  2250. case 40:
  2251. #line 375 "objc-parse.y"
  2252. { yyval.code = BIT_NOT_EXPR; ;
  2253.     break;}
  2254. case 41:
  2255. #line 377 "objc-parse.y"
  2256. { yyval.code = TRUTH_NOT_EXPR; ;
  2257.     break;}
  2258. case 42:
  2259. #line 381 "objc-parse.y"
  2260. { yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
  2261.     break;}
  2262. case 43:
  2263. #line 386 "objc-parse.y"
  2264. { yyval.ttype = NULL_TREE; ;
  2265.     break;}
  2266. case 45:
  2267. #line 392 "objc-parse.y"
  2268. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  2269.     break;}
  2270. case 46:
  2271. #line 394 "objc-parse.y"
  2272. { chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  2273.     break;}
  2274. case 48:
  2275. #line 400 "objc-parse.y"
  2276. { yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  2277.     break;}
  2278. case 49:
  2279. #line 403 "objc-parse.y"
  2280. { yyvsp[0].itype = pedantic;
  2281.           pedantic = 0; ;
  2282.     break;}
  2283. case 50:
  2284. #line 406 "objc-parse.y"
  2285. { yyval.ttype = yyvsp[0].ttype;
  2286.           pedantic = yyvsp[-2].itype; ;
  2287.     break;}
  2288. case 51:
  2289. #line 409 "objc-parse.y"
  2290. { yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
  2291.           overflow_warning (yyval.ttype); ;
  2292.     break;}
  2293. case 52:
  2294. #line 413 "objc-parse.y"
  2295. { tree label = lookup_label (yyvsp[0].ttype);
  2296.           if (pedantic)
  2297.             pedwarn ("ANSI C forbids `&&'");
  2298.           if (label == 0)
  2299.             yyval.ttype = null_pointer_node;
  2300.           else
  2301.             {
  2302.               TREE_USED (label) = 1;
  2303.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  2304.               TREE_CONSTANT (yyval.ttype) = 1;
  2305.             }
  2306.         ;
  2307.     break;}
  2308. case 53:
  2309. #line 441 "objc-parse.y"
  2310. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  2311.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  2312.             error ("`sizeof' applied to a bit-field");
  2313.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  2314.     break;}
  2315. case 54:
  2316. #line 446 "objc-parse.y"
  2317. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  2318.     break;}
  2319. case 55:
  2320. #line 448 "objc-parse.y"
  2321. { yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
  2322.     break;}
  2323. case 56:
  2324. #line 450 "objc-parse.y"
  2325. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  2326.     break;}
  2327. case 57:
  2328. #line 452 "objc-parse.y"
  2329. { yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
  2330.     break;}
  2331. case 58:
  2332. #line 454 "objc-parse.y"
  2333. { yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
  2334.     break;}
  2335. case 60:
  2336. #line 460 "objc-parse.y"
  2337. { tree type = groktypename (yyvsp[-2].ttype);
  2338.           yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
  2339.     break;}
  2340. case 61:
  2341. #line 463 "objc-parse.y"
  2342. { start_init (NULL_TREE, NULL, 0);
  2343.           yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
  2344.           really_start_incremental_init (yyvsp[-2].ttype); ;
  2345.     break;}
  2346. case 62:
  2347. #line 467 "objc-parse.y"
  2348. { char *name;
  2349.           tree result = pop_init_level (0);
  2350.           tree type = yyvsp[-5].ttype;
  2351.           finish_init ();
  2352.  
  2353.           if (pedantic)
  2354.             pedwarn ("ANSI C forbids constructor expressions");
  2355.           if (TYPE_NAME (type) != 0)
  2356.             {
  2357.               if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  2358.             name = IDENTIFIER_POINTER (TYPE_NAME (type));
  2359.               else
  2360.             name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
  2361.             }
  2362.           else
  2363.             name = "";
  2364.           yyval.ttype = result;
  2365.           if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  2366.             {
  2367.               int failure = complete_array_type (type, yyval.ttype, 1);
  2368.               if (failure)
  2369.             abort ();
  2370.             }
  2371.         ;
  2372.     break;}
  2373. case 64:
  2374. #line 496 "objc-parse.y"
  2375. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2376.     break;}
  2377. case 65:
  2378. #line 498 "objc-parse.y"
  2379. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2380.     break;}
  2381. case 66:
  2382. #line 500 "objc-parse.y"
  2383. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2384.     break;}
  2385. case 67:
  2386. #line 502 "objc-parse.y"
  2387. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2388.     break;}
  2389. case 68:
  2390. #line 504 "objc-parse.y"
  2391. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2392.     break;}
  2393. case 69:
  2394. #line 506 "objc-parse.y"
  2395. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2396.     break;}
  2397. case 70:
  2398. #line 508 "objc-parse.y"
  2399. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2400.     break;}
  2401. case 71:
  2402. #line 510 "objc-parse.y"
  2403. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2404.     break;}
  2405. case 72:
  2406. #line 512 "objc-parse.y"
  2407. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2408.     break;}
  2409. case 73:
  2410. #line 514 "objc-parse.y"
  2411. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2412.     break;}
  2413. case 74:
  2414. #line 516 "objc-parse.y"
  2415. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2416.     break;}
  2417. case 75:
  2418. #line 518 "objc-parse.y"
  2419. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2420.     break;}
  2421. case 76:
  2422. #line 520 "objc-parse.y"
  2423. { yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2424.     break;}
  2425. case 77:
  2426. #line 522 "objc-parse.y"
  2427. { yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2428.     break;}
  2429. case 78:
  2430. #line 524 "objc-parse.y"
  2431. { yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2432.     break;}
  2433. case 79:
  2434. #line 526 "objc-parse.y"
  2435. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
  2436.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  2437.     break;}
  2438. case 80:
  2439. #line 529 "objc-parse.y"
  2440. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
  2441.           /* This inhibits warnings in truthvalue_conversion.  */
  2442.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  2443.     break;}
  2444. case 81:
  2445. #line 536 "objc-parse.y"
  2446. {
  2447.           yyval.ttype = lastiddecl;
  2448.           if (!yyval.ttype || yyval.ttype == error_mark_node)
  2449.             {
  2450.               if (yychar == YYEMPTY)
  2451.             yychar = YYLEX;
  2452.               if (yychar == '(')
  2453.             {
  2454.               tree decl;
  2455.  
  2456.               if (objc_receiver_context
  2457.                   && ! (objc_receiver_context
  2458.                     && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
  2459.                 /* we have a message to super */
  2460.                 yyval.ttype = get_super_receiver ();
  2461.               else if (objc_method_context
  2462.                    && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2463.                 {
  2464.                   if (is_private (decl))
  2465.                 yyval.ttype = error_mark_node;
  2466.                   else
  2467.                 yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2468.                 }
  2469.               else
  2470.                 {
  2471.                   /* Ordinary implicit function declaration.  */
  2472.                   yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  2473.                   assemble_external (yyval.ttype);
  2474.                   TREE_USED (yyval.ttype) = 1;
  2475.                 }
  2476.             }
  2477.               else if (current_function_decl == 0)
  2478.             {
  2479.               error ("`%s' undeclared here (not in a function)",
  2480.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2481.               yyval.ttype = error_mark_node;
  2482.             }
  2483.               else
  2484.             {
  2485.               tree decl;
  2486.  
  2487.                   if (objc_receiver_context
  2488.                   && ! strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super"))
  2489.                 /* we have a message to super */
  2490.                 yyval.ttype = get_super_receiver ();
  2491.               else if (objc_method_context
  2492.                    && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2493.                 {
  2494.                   if (is_private (decl))
  2495.                 yyval.ttype = error_mark_node;
  2496.                   else
  2497.                 yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2498.                 }
  2499.               else
  2500.                 {
  2501.                   if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
  2502.                   || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
  2503.                 {
  2504.                   error ("`%s' undeclared (first use this function)",
  2505.                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  2506.  
  2507.                   if (! undeclared_variable_notice)
  2508.                     {
  2509.                       error ("(Each undeclared identifier is reported only once");
  2510.                       error ("for each function it appears in.)");
  2511.                       undeclared_variable_notice = 1;
  2512.                     }
  2513.                 }
  2514.                   yyval.ttype = error_mark_node;
  2515.                   /* Prevent repeated error messages.  */
  2516.                   IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  2517.                   IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
  2518.                 }
  2519.             }
  2520.             }
  2521.           else if (TREE_TYPE (yyval.ttype) == error_mark_node)
  2522.             yyval.ttype = error_mark_node;
  2523.           else if (C_DECL_ANTICIPATED (yyval.ttype))
  2524.             {
  2525.               /* The first time we see a build-in function used,
  2526.              if it has not been declared.  */
  2527.               C_DECL_ANTICIPATED (yyval.ttype) = 0;
  2528.               if (yychar == YYEMPTY)
  2529.             yychar = YYLEX;
  2530.               if (yychar == '(')
  2531.             {
  2532.               /* Omit the implicit declaration we
  2533.                  would ordinarily do, so we don't lose
  2534.                  the actual built in type.
  2535.                  But print a diagnostic for the mismatch.  */
  2536.               if (objc_method_context
  2537.                   && is_ivar (objc_ivar_chain, yyvsp[0].ttype))
  2538.                 error ("Instance variable `%s' implicitly declared as function",
  2539.                    IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2540.               else
  2541.                 if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
  2542.                   error ("`%s' implicitly declared as function",
  2543.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2544.               else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
  2545.                     != TYPE_MODE (integer_type_node))
  2546.                    && (TREE_TYPE (TREE_TYPE (yyval.ttype))
  2547.                        != void_type_node))
  2548.                 pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
  2549.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2550.               /* If it really returns void, change that to int.  */
  2551.               if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
  2552.                 TREE_TYPE (yyval.ttype)
  2553.                   = build_function_type (integer_type_node,
  2554.                              TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
  2555.             }
  2556.               else
  2557.             pedwarn ("built-in function `%s' used without declaration",
  2558.                  IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2559.  
  2560.               /* Do what we would ordinarily do when a fn is used.  */
  2561.               assemble_external (yyval.ttype);
  2562.               TREE_USED (yyval.ttype) = 1;
  2563.             }
  2564.           else
  2565.             {
  2566.               assemble_external (yyval.ttype);
  2567.               TREE_USED (yyval.ttype) = 1;
  2568.               /* we have a definition - still check if iVariable */
  2569.  
  2570.               if (!objc_receiver_context
  2571.               || (objc_receiver_context
  2572.                   && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
  2573.                         {
  2574.               tree decl;
  2575.  
  2576.               if (objc_method_context
  2577.                   && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2578.                             {
  2579.                               if (IDENTIFIER_LOCAL_VALUE (yyvsp[0].ttype))
  2580.                                 warning ("local declaration of `%s' hides instance variable",
  2581.                                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  2582.                               else
  2583.                  {
  2584.                    if (is_private (decl))
  2585.                      yyval.ttype = error_mark_node;
  2586.                    else
  2587.                      yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2588.                  }
  2589.                             }
  2590.             }
  2591.                       else /* we have a message to super */
  2592.                 yyval.ttype = get_super_receiver ();
  2593.             }
  2594.  
  2595.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  2596.             {
  2597.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  2598.               /* This is to prevent an enum whose value is 0
  2599.              from being considered a null pointer constant.  */
  2600.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  2601.               TREE_CONSTANT (yyval.ttype) = 1;
  2602.             }
  2603.         ;
  2604.     break;}
  2605. case 83:
  2606. #line 696 "objc-parse.y"
  2607. { yyval.ttype = combine_strings (yyvsp[0].ttype); ;
  2608.     break;}
  2609. case 84:
  2610. #line 698 "objc-parse.y"
  2611. { char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
  2612.           if (class == 'e' || class == '1'
  2613.               || class == '2' || class == '<')
  2614.             C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
  2615.           yyval.ttype = yyvsp[-1].ttype; ;
  2616.     break;}
  2617. case 85:
  2618. #line 704 "objc-parse.y"
  2619. { yyval.ttype = error_mark_node; ;
  2620.     break;}
  2621. case 86:
  2622. #line 706 "objc-parse.y"
  2623. { if (current_function_decl == 0)
  2624.             {
  2625.               error ("braced-group within expression allowed only inside a function");
  2626.               YYERROR;
  2627.             }
  2628.           /* We must force a BLOCK for this level
  2629.              so that, if it is not expanded later,
  2630.              there is a way to turn off the entire subtree of blocks
  2631.              that are contained in it.  */
  2632.           keep_next_level ();
  2633.           push_iterator_stack ();
  2634.           push_label_level ();
  2635.           yyval.ttype = expand_start_stmt_expr (); ;
  2636.     break;}
  2637. case 87:
  2638. #line 720 "objc-parse.y"
  2639. { tree rtl_exp;
  2640.           if (pedantic)
  2641.             pedwarn ("ANSI C forbids braced-groups within expressions");
  2642.           pop_iterator_stack ();
  2643.           pop_label_level ();
  2644.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  2645.           /* The statements have side effects, so the group does.  */
  2646.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  2647.  
  2648.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  2649.             {
  2650.               /* Make a BIND_EXPR for the BLOCK already made.  */
  2651.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  2652.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  2653.               /* Remove the block from the tree at this point.
  2654.              It gets put back at the proper place
  2655.              when the BIND_EXPR is expanded.  */
  2656.               delete_block (yyvsp[-1].ttype);
  2657.             }
  2658.           else
  2659.             yyval.ttype = yyvsp[-1].ttype;
  2660.         ;
  2661.     break;}
  2662. case 88:
  2663. #line 743 "objc-parse.y"
  2664. { yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2665.     break;}
  2666. case 89:
  2667. #line 745 "objc-parse.y"
  2668. { yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2669.     break;}
  2670. case 90:
  2671. #line 747 "objc-parse.y"
  2672. {
  2673.                   if (doing_objc_thang)
  2674.                     {
  2675.               if (is_public (yyvsp[-2].ttype, yyvsp[0].ttype))
  2676.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2677.               else
  2678.             yyval.ttype = error_mark_node;
  2679.             }
  2680.                   else
  2681.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2682.         ;
  2683.     break;}
  2684. case 91:
  2685. #line 759 "objc-parse.y"
  2686. {
  2687.                   tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
  2688.  
  2689.                   if (doing_objc_thang)
  2690.                     {
  2691.               if (is_public (expr, yyvsp[0].ttype))
  2692.             yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2693.               else
  2694.             yyval.ttype = error_mark_node;
  2695.             }
  2696.                   else
  2697.                     yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2698.         ;
  2699.     break;}
  2700. case 92:
  2701. #line 773 "objc-parse.y"
  2702. { yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2703.     break;}
  2704. case 93:
  2705. #line 775 "objc-parse.y"
  2706. { yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2707.     break;}
  2708. case 94:
  2709. #line 777 "objc-parse.y"
  2710. { yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
  2711.     break;}
  2712. case 95:
  2713. #line 779 "objc-parse.y"
  2714. { yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
  2715.     break;}
  2716. case 96:
  2717. #line 781 "objc-parse.y"
  2718. { yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
  2719.     break;}
  2720. case 97:
  2721. #line 783 "objc-parse.y"
  2722. { yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
  2723.     break;}
  2724. case 98:
  2725. #line 785 "objc-parse.y"
  2726. { yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
  2727.     break;}
  2728. case 100:
  2729. #line 792 "objc-parse.y"
  2730. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2731.     break;}
  2732. case 102:
  2733. #line 800 "objc-parse.y"
  2734. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2735.     break;}
  2736. case 105:
  2737. #line 808 "objc-parse.y"
  2738. { c_mark_varargs ();
  2739.           if (pedantic)
  2740.             pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
  2741.     break;}
  2742. case 106:
  2743. #line 818 "objc-parse.y"
  2744. { ;
  2745.     break;}
  2746. case 111:
  2747. #line 830 "objc-parse.y"
  2748. { current_declspecs = TREE_VALUE (declspec_stack);
  2749.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2750.           declspec_stack = TREE_CHAIN (declspec_stack);
  2751.           resume_momentary (yyvsp[-2].itype); ;
  2752.     break;}
  2753. case 112:
  2754. #line 835 "objc-parse.y"
  2755. { current_declspecs = TREE_VALUE (declspec_stack);    
  2756.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2757.           declspec_stack = TREE_CHAIN (declspec_stack);
  2758.           resume_momentary (yyvsp[-2].itype); ;
  2759.     break;}
  2760. case 113:
  2761. #line 840 "objc-parse.y"
  2762. { shadow_tag_warned (yyvsp[-1].ttype, 1);
  2763.           pedwarn ("empty declaration"); ;
  2764.     break;}
  2765. case 114:
  2766. #line 843 "objc-parse.y"
  2767. { pedwarn ("empty declaration"); ;
  2768.     break;}
  2769. case 115:
  2770. #line 852 "objc-parse.y"
  2771. { ;
  2772.     break;}
  2773. case 120:
  2774. #line 867 "objc-parse.y"
  2775. { yyval.itype = suspend_momentary ();
  2776.           pending_xref_error ();
  2777.           declspec_stack = tree_cons (prefix_attributes,
  2778.                           current_declspecs,
  2779.                           declspec_stack);
  2780.           current_declspecs = yyvsp[0].ttype; 
  2781.           prefix_attributes = NULL_TREE; ;
  2782.     break;}
  2783. case 121:
  2784. #line 877 "objc-parse.y"
  2785. { prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
  2786.     break;}
  2787. case 122:
  2788. #line 882 "objc-parse.y"
  2789. { current_declspecs = TREE_VALUE (declspec_stack);
  2790.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2791.           declspec_stack = TREE_CHAIN (declspec_stack);
  2792.           resume_momentary (yyvsp[-2].itype); ;
  2793.     break;}
  2794. case 123:
  2795. #line 887 "objc-parse.y"
  2796. { current_declspecs = TREE_VALUE (declspec_stack);
  2797.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2798.           declspec_stack = TREE_CHAIN (declspec_stack);
  2799.           resume_momentary (yyvsp[-2].itype); ;
  2800.     break;}
  2801. case 124:
  2802. #line 892 "objc-parse.y"
  2803. { current_declspecs = TREE_VALUE (declspec_stack);
  2804.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2805.           declspec_stack = TREE_CHAIN (declspec_stack);
  2806.           resume_momentary (yyvsp[-1].itype); ;
  2807.     break;}
  2808. case 125:
  2809. #line 897 "objc-parse.y"
  2810. { current_declspecs = TREE_VALUE (declspec_stack);
  2811.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2812.           declspec_stack = TREE_CHAIN (declspec_stack);
  2813.           resume_momentary (yyvsp[-1].itype); ;
  2814.     break;}
  2815. case 126:
  2816. #line 902 "objc-parse.y"
  2817. { shadow_tag (yyvsp[-1].ttype); ;
  2818.     break;}
  2819. case 127:
  2820. #line 904 "objc-parse.y"
  2821. { pedwarn ("empty declaration"); ;
  2822.     break;}
  2823. case 128:
  2824. #line 913 "objc-parse.y"
  2825. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2826.     break;}
  2827. case 129:
  2828. #line 915 "objc-parse.y"
  2829. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2830.     break;}
  2831. case 130:
  2832. #line 919 "objc-parse.y"
  2833. { yyval.ttype = NULL_TREE; ;
  2834.     break;}
  2835. case 131:
  2836. #line 921 "objc-parse.y"
  2837. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2838.     break;}
  2839. case 132:
  2840. #line 923 "objc-parse.y"
  2841. { if (extra_warnings)
  2842.             warning ("`%s' is not at beginning of declaration",
  2843.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2844.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2845.     break;}
  2846. case 133:
  2847. #line 935 "objc-parse.y"
  2848. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  2849.           TREE_STATIC (yyval.ttype) = 1; ;
  2850.     break;}
  2851. case 134:
  2852. #line 938 "objc-parse.y"
  2853. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2854.     break;}
  2855. case 135:
  2856. #line 940 "objc-parse.y"
  2857. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2858.           TREE_STATIC (yyval.ttype) = 1; ;
  2859.     break;}
  2860. case 136:
  2861. #line 943 "objc-parse.y"
  2862. { if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
  2863.             warning ("`%s' is not at beginning of declaration",
  2864.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2865.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2866.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  2867.     break;}
  2868. case 137:
  2869. #line 957 "objc-parse.y"
  2870. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2871.     break;}
  2872. case 138:
  2873. #line 959 "objc-parse.y"
  2874. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2875.     break;}
  2876. case 139:
  2877. #line 963 "objc-parse.y"
  2878. { yyval.ttype = NULL_TREE; ;
  2879.     break;}
  2880. case 140:
  2881. #line 965 "objc-parse.y"
  2882. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2883.     break;}
  2884. case 143:
  2885. #line 975 "objc-parse.y"
  2886. { /* For a typedef name, record the meaning, not the name.
  2887.              In case of `foo foo, bar;'.  */
  2888.           yyval.ttype = lookup_name (yyvsp[0].ttype); ;
  2889.     break;}
  2890. case 144:
  2891. #line 979 "objc-parse.y"
  2892. { yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2893.     break;}
  2894. case 145:
  2895. #line 981 "objc-parse.y"
  2896. { yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
  2897.     break;}
  2898. case 146:
  2899. #line 983 "objc-parse.y"
  2900. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
  2901.     break;}
  2902. case 147:
  2903. #line 985 "objc-parse.y"
  2904. { yyval.ttype = groktypename (yyvsp[-1].ttype); ;
  2905.     break;}
  2906. case 155:
  2907. #line 1007 "objc-parse.y"
  2908. { yyval.ttype = NULL_TREE; ;
  2909.     break;}
  2910. case 156:
  2911. #line 1009 "objc-parse.y"
  2912. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
  2913.           yyval.ttype = yyvsp[-1].ttype;
  2914.         ;
  2915.     break;}
  2916. case 157:
  2917. #line 1016 "objc-parse.y"
  2918. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
  2919.                       yyvsp[-1].ttype, prefix_attributes);
  2920.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2921.     break;}
  2922. case 158:
  2923. #line 1021 "objc-parse.y"
  2924. { finish_init ();
  2925.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2926.     break;}
  2927. case 159:
  2928. #line 1024 "objc-parse.y"
  2929. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
  2930.                        yyvsp[0].ttype, prefix_attributes);
  2931.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); 
  2932.                 ;
  2933.     break;}
  2934. case 160:
  2935. #line 1032 "objc-parse.y"
  2936. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
  2937.                       yyvsp[-1].ttype, prefix_attributes);
  2938.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2939.     break;}
  2940. case 161:
  2941. #line 1037 "objc-parse.y"
  2942. { finish_init ();
  2943.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
  2944.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2945.     break;}
  2946. case 162:
  2947. #line 1041 "objc-parse.y"
  2948. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
  2949.                        yyvsp[0].ttype, prefix_attributes);
  2950.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2951.     break;}
  2952. case 163:
  2953. #line 1049 "objc-parse.y"
  2954. { yyval.ttype = NULL_TREE; ;
  2955.     break;}
  2956. case 164:
  2957. #line 1051 "objc-parse.y"
  2958. { yyval.ttype = yyvsp[0].ttype; ;
  2959.     break;}
  2960. case 165:
  2961. #line 1056 "objc-parse.y"
  2962. { yyval.ttype = yyvsp[0].ttype; ;
  2963.     break;}
  2964. case 166:
  2965. #line 1058 "objc-parse.y"
  2966. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2967.     break;}
  2968. case 167:
  2969. #line 1063 "objc-parse.y"
  2970. { yyval.ttype = yyvsp[-2].ttype; ;
  2971.     break;}
  2972. case 168:
  2973. #line 1068 "objc-parse.y"
  2974. { yyval.ttype = yyvsp[0].ttype; ;
  2975.     break;}
  2976. case 169:
  2977. #line 1070 "objc-parse.y"
  2978. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2979.     break;}
  2980. case 170:
  2981. #line 1075 "objc-parse.y"
  2982. { yyval.ttype = NULL_TREE; ;
  2983.     break;}
  2984. case 171:
  2985. #line 1077 "objc-parse.y"
  2986. { yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
  2987.     break;}
  2988. case 172:
  2989. #line 1079 "objc-parse.y"
  2990. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  2991.     break;}
  2992. case 173:
  2993. #line 1081 "objc-parse.y"
  2994. { yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  2995.     break;}
  2996. case 174:
  2997. #line 1083 "objc-parse.y"
  2998. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2999.     break;}
  3000. case 180:
  3001. #line 1101 "objc-parse.y"
  3002. { really_start_incremental_init (NULL_TREE);
  3003.           /* Note that the call to clear_momentary
  3004.              is in process_init_element.  */
  3005.           push_momentary (); ;
  3006.     break;}
  3007. case 181:
  3008. #line 1106 "objc-parse.y"
  3009. { yyval.ttype = pop_init_level (0);
  3010.           if (yyval.ttype == error_mark_node
  3011.               && ! (yychar == STRING || yychar == CONSTANT))
  3012.             pop_momentary ();
  3013.           else
  3014.             pop_momentary_nofree (); ;
  3015.     break;}
  3016. case 182:
  3017. #line 1114 "objc-parse.y"
  3018. { yyval.ttype = error_mark_node; ;
  3019.     break;}
  3020. case 183:
  3021. #line 1120 "objc-parse.y"
  3022. { if (pedantic)
  3023.             pedwarn ("ANSI C forbids empty initializer braces"); ;
  3024.     break;}
  3025. case 187:
  3026. #line 1134 "objc-parse.y"
  3027. { process_init_element (yyvsp[0].ttype); ;
  3028.     break;}
  3029. case 188:
  3030. #line 1136 "objc-parse.y"
  3031. { push_init_level (0); ;
  3032.     break;}
  3033. case 189:
  3034. #line 1138 "objc-parse.y"
  3035. { process_init_element (pop_init_level (0)); ;
  3036.     break;}
  3037. case 191:
  3038. #line 1144 "objc-parse.y"
  3039. { set_init_label (yyvsp[-1].ttype); ;
  3040.     break;}
  3041. case 193:
  3042. #line 1147 "objc-parse.y"
  3043. { set_init_label (yyvsp[-1].ttype); ;
  3044.     break;}
  3045. case 195:
  3046. #line 1153 "objc-parse.y"
  3047. { push_c_function_context ();
  3048.           if (! start_function (current_declspecs, yyvsp[0].ttype,
  3049.                     prefix_attributes, NULL_TREE, 1))
  3050.             {
  3051.               pop_c_function_context ();
  3052.               YYERROR1;
  3053.             }
  3054.           reinit_parse_for_function (); ;
  3055.     break;}
  3056. case 196:
  3057. #line 1162 "objc-parse.y"
  3058. { store_parm_decls (); ;
  3059.     break;}
  3060. case 197:
  3061. #line 1170 "objc-parse.y"
  3062. { finish_function (1);
  3063.           pop_c_function_context (); ;
  3064.     break;}
  3065. case 198:
  3066. #line 1176 "objc-parse.y"
  3067. { push_c_function_context ();
  3068.           if (! start_function (current_declspecs, yyvsp[0].ttype,
  3069.                     prefix_attributes, NULL_TREE, 1))
  3070.             {
  3071.               pop_c_function_context ();
  3072.               YYERROR1;
  3073.             }
  3074.           reinit_parse_for_function (); ;
  3075.     break;}
  3076. case 199:
  3077. #line 1185 "objc-parse.y"
  3078. { store_parm_decls (); ;
  3079.     break;}
  3080. case 200:
  3081. #line 1193 "objc-parse.y"
  3082. { finish_function (1);
  3083.           pop_c_function_context (); ;
  3084.     break;}
  3085. case 203:
  3086. #line 1209 "objc-parse.y"
  3087. { yyval.ttype = yyvsp[-1].ttype; ;
  3088.     break;}
  3089. case 204:
  3090. #line 1211 "objc-parse.y"
  3091. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3092.     break;}
  3093. case 205:
  3094. #line 1216 "objc-parse.y"
  3095. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3096.     break;}
  3097. case 206:
  3098. #line 1218 "objc-parse.y"
  3099. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3100.     break;}
  3101. case 207:
  3102. #line 1220 "objc-parse.y"
  3103. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3104.     break;}
  3105. case 208:
  3106. #line 1222 "objc-parse.y"
  3107. { yyval.ttype = yyvsp[0].ttype; ;
  3108.     break;}
  3109. case 211:
  3110. #line 1234 "objc-parse.y"
  3111. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3112.     break;}
  3113. case 212:
  3114. #line 1239 "objc-parse.y"
  3115. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3116.     break;}
  3117. case 213:
  3118. #line 1241 "objc-parse.y"
  3119. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3120.     break;}
  3121. case 214:
  3122. #line 1243 "objc-parse.y"
  3123. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3124.     break;}
  3125. case 215:
  3126. #line 1245 "objc-parse.y"
  3127. { yyval.ttype = yyvsp[0].ttype; ;
  3128.     break;}
  3129. case 217:
  3130. #line 1254 "objc-parse.y"
  3131. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3132.     break;}
  3133. case 218:
  3134. #line 1259 "objc-parse.y"
  3135. { yyval.ttype = yyvsp[-1].ttype; ;
  3136.     break;}
  3137. case 219:
  3138. #line 1261 "objc-parse.y"
  3139. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3140.     break;}
  3141. case 220:
  3142. #line 1263 "objc-parse.y"
  3143. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3144.     break;}
  3145. case 221:
  3146. #line 1265 "objc-parse.y"
  3147. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3148.     break;}
  3149. case 222:
  3150. #line 1267 "objc-parse.y"
  3151. { yyval.ttype = yyvsp[0].ttype; ;
  3152.     break;}
  3153. case 224:
  3154. #line 1273 "objc-parse.y"
  3155. { yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
  3156.           /* Start scope of tag before parsing components.  */
  3157.         ;
  3158.     break;}
  3159. case 225:
  3160. #line 1277 "objc-parse.y"
  3161. { yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3162.     break;}
  3163. case 226:
  3164. #line 1279 "objc-parse.y"
  3165. { yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
  3166.                       yyvsp[-2].ttype, yyvsp[0].ttype);
  3167.         ;
  3168.     break;}
  3169. case 227:
  3170. #line 1283 "objc-parse.y"
  3171. { yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
  3172.     break;}
  3173. case 228:
  3174. #line 1285 "objc-parse.y"
  3175. { yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
  3176.     break;}
  3177. case 229:
  3178. #line 1287 "objc-parse.y"
  3179. { yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3180.     break;}
  3181. case 230:
  3182. #line 1289 "objc-parse.y"
  3183. { yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
  3184.                       yyvsp[-2].ttype, yyvsp[0].ttype);
  3185.         ;
  3186.     break;}
  3187. case 231:
  3188. #line 1293 "objc-parse.y"
  3189. { yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
  3190.     break;}
  3191. case 232:
  3192. #line 1295 "objc-parse.y"
  3193. { yyvsp[0].itype = suspend_momentary ();
  3194.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  3195.     break;}
  3196. case 233:
  3197. #line 1298 "objc-parse.y"
  3198. { yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), yyvsp[0].ttype);
  3199.           resume_momentary (yyvsp[-5].itype); ;
  3200.     break;}
  3201. case 234:
  3202. #line 1301 "objc-parse.y"
  3203. { yyvsp[0].itype = suspend_momentary ();
  3204.           yyval.ttype = start_enum (NULL_TREE); ;
  3205.     break;}
  3206. case 235:
  3207. #line 1304 "objc-parse.y"
  3208. { yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), yyvsp[0].ttype);
  3209.           resume_momentary (yyvsp[-5].itype); ;
  3210.     break;}
  3211. case 236:
  3212. #line 1307 "objc-parse.y"
  3213. { yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
  3214.     break;}
  3215. case 240:
  3216. #line 1318 "objc-parse.y"
  3217. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  3218.     break;}
  3219. case 241:
  3220. #line 1323 "objc-parse.y"
  3221. { yyval.ttype = yyvsp[0].ttype; ;
  3222.     break;}
  3223. case 242:
  3224. #line 1325 "objc-parse.y"
  3225. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  3226.           pedwarn ("no semicolon at end of struct or union"); ;
  3227.     break;}
  3228. case 243:
  3229. #line 1330 "objc-parse.y"
  3230. { yyval.ttype = NULL_TREE; ;
  3231.     break;}
  3232. case 244:
  3233. #line 1332 "objc-parse.y"
  3234. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  3235.     break;}
  3236. case 245:
  3237. #line 1334 "objc-parse.y"
  3238. { if (pedantic)
  3239.             pedwarn ("extra semicolon in struct or union specified"); ;
  3240.     break;}
  3241. case 246:
  3242. #line 1338 "objc-parse.y"
  3243. {
  3244.           tree interface = lookup_interface (yyvsp[-1].ttype);
  3245.  
  3246.           if (interface)
  3247.             yyval.ttype = get_class_ivars (interface);
  3248.           else
  3249.             {
  3250.               error ("Cannot find interface declaration for `%s'",
  3251.                  IDENTIFIER_POINTER (yyvsp[-1].ttype));
  3252.               yyval.ttype = NULL_TREE;
  3253.             }
  3254.         ;
  3255.     break;}
  3256. case 247:
  3257. #line 1363 "objc-parse.y"
  3258. { yyval.ttype = yyvsp[0].ttype;
  3259.           current_declspecs = TREE_VALUE (declspec_stack);
  3260.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3261.           declspec_stack = TREE_CHAIN (declspec_stack);
  3262.           resume_momentary (yyvsp[-1].itype); ;
  3263.     break;}
  3264. case 248:
  3265. #line 1369 "objc-parse.y"
  3266. { if (pedantic)
  3267.             pedwarn ("ANSI C forbids member declarations with no members");
  3268.           shadow_tag(yyvsp[0].ttype);
  3269.           yyval.ttype = NULL_TREE; ;
  3270.     break;}
  3271. case 249:
  3272. #line 1374 "objc-parse.y"
  3273. { yyval.ttype = yyvsp[0].ttype;
  3274.           current_declspecs = TREE_VALUE (declspec_stack);
  3275.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3276.           declspec_stack = TREE_CHAIN (declspec_stack);
  3277.           resume_momentary (yyvsp[-1].itype); ;
  3278.     break;}
  3279. case 250:
  3280. #line 1380 "objc-parse.y"
  3281. { if (pedantic)
  3282.             pedwarn ("ANSI C forbids member declarations with no members");
  3283.           shadow_tag(yyvsp[0].ttype);
  3284.           yyval.ttype = NULL_TREE; ;
  3285.     break;}
  3286. case 251:
  3287. #line 1385 "objc-parse.y"
  3288. { yyval.ttype = NULL_TREE; ;
  3289.     break;}
  3290. case 253:
  3291. #line 1391 "objc-parse.y"
  3292. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3293.     break;}
  3294. case 254:
  3295. #line 1396 "objc-parse.y"
  3296. { yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
  3297.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  3298.     break;}
  3299. case 255:
  3300. #line 1400 "objc-parse.y"
  3301. { yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
  3302.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  3303.     break;}
  3304. case 256:
  3305. #line 1403 "objc-parse.y"
  3306. { yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  3307.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  3308.     break;}
  3309. case 258:
  3310. #line 1415 "objc-parse.y"
  3311. { yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
  3312.     break;}
  3313. case 259:
  3314. #line 1417 "objc-parse.y"
  3315. { yyval.ttype = error_mark_node; ;
  3316.     break;}
  3317. case 260:
  3318. #line 1423 "objc-parse.y"
  3319. { yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
  3320.     break;}
  3321. case 261:
  3322. #line 1425 "objc-parse.y"
  3323. { yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3324.     break;}
  3325. case 262:
  3326. #line 1430 "objc-parse.y"
  3327. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3328.     break;}
  3329. case 263:
  3330. #line 1432 "objc-parse.y"
  3331. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3332.     break;}
  3333. case 264:
  3334. #line 1437 "objc-parse.y"
  3335. { yyval.ttype = NULL_TREE; ;
  3336.     break;}
  3337. case 266:
  3338. #line 1443 "objc-parse.y"
  3339. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  3340.     break;}
  3341. case 267:
  3342. #line 1445 "objc-parse.y"
  3343. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  3344.     break;}
  3345. case 268:
  3346. #line 1450 "objc-parse.y"
  3347. { yyval.ttype = NULL_TREE; ;
  3348.     break;}
  3349. case 269:
  3350. #line 1452 "objc-parse.y"
  3351. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  3352.     break;}
  3353. case 270:
  3354. #line 1457 "objc-parse.y"
  3355. { yyval.ttype = yyvsp[-1].ttype; ;
  3356.     break;}
  3357. case 271:
  3358. #line 1460 "objc-parse.y"
  3359. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3360.     break;}
  3361. case 272:
  3362. #line 1462 "objc-parse.y"
  3363. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  3364.     break;}
  3365. case 273:
  3366. #line 1464 "objc-parse.y"
  3367. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3368.     break;}
  3369. case 274:
  3370. #line 1466 "objc-parse.y"
  3371. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3372.     break;}
  3373. case 275:
  3374. #line 1468 "objc-parse.y"
  3375. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3376.     break;}
  3377. case 276:
  3378. #line 1470 "objc-parse.y"
  3379. { yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  3380.     break;}
  3381. case 277:
  3382. #line 1472 "objc-parse.y"
  3383. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  3384.     break;}
  3385. case 278:
  3386. #line 1474 "objc-parse.y"
  3387. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  3388.     break;}
  3389. case 279:
  3390. #line 1476 "objc-parse.y"
  3391. { yyval.ttype = yyvsp[0].ttype; ;
  3392.     break;}
  3393. case 286:
  3394. #line 1498 "objc-parse.y"
  3395. { emit_line_note (input_filename, lineno);
  3396.           pushlevel (0);
  3397.           clear_last_expr ();
  3398.           push_momentary ();
  3399.           expand_start_bindings (0);
  3400.           if (objc_method_context)
  3401.             add_objc_decls ();
  3402.         ;
  3403.     break;}
  3404. case 288:
  3405. #line 1513 "objc-parse.y"
  3406. { if (pedantic)
  3407.             pedwarn ("ANSI C forbids label declarations"); ;
  3408.     break;}
  3409. case 291:
  3410. #line 1524 "objc-parse.y"
  3411. { tree link;
  3412.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  3413.             {
  3414.               tree label = shadow_label (TREE_VALUE (link));
  3415.               C_DECLARED_LABEL_FLAG (label) = 1;
  3416.               declare_nonlocal_label (label);
  3417.             }
  3418.         ;
  3419.     break;}
  3420. case 292:
  3421. #line 1538 "objc-parse.y"
  3422. {;
  3423.     break;}
  3424. case 294:
  3425. #line 1543 "objc-parse.y"
  3426. { yyval.ttype = convert (void_type_node, integer_zero_node); ;
  3427.     break;}
  3428. case 295:
  3429. #line 1545 "objc-parse.y"
  3430. { emit_line_note (input_filename, lineno);
  3431.           expand_end_bindings (getdecls (), 1, 0);
  3432.           yyval.ttype = poplevel (1, 1, 0);
  3433.           if (yychar == CONSTANT || yychar == STRING)
  3434.             pop_momentary_nofree ();
  3435.           else
  3436.             pop_momentary (); ;
  3437.     break;}
  3438. case 296:
  3439. #line 1553 "objc-parse.y"
  3440. { emit_line_note (input_filename, lineno);
  3441.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  3442.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  3443.           if (yychar == CONSTANT || yychar == STRING)
  3444.             pop_momentary_nofree ();
  3445.           else
  3446.             pop_momentary (); ;
  3447.     break;}
  3448. case 297:
  3449. #line 1561 "objc-parse.y"
  3450. { emit_line_note (input_filename, lineno);
  3451.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  3452.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  3453.           if (yychar == CONSTANT || yychar == STRING)
  3454.             pop_momentary_nofree ();
  3455.           else
  3456.             pop_momentary (); ;
  3457.     break;}
  3458. case 300:
  3459. #line 1581 "objc-parse.y"
  3460. { emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3461.           expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
  3462.           yyval.itype = stmt_count;
  3463.           if_stmt_file = yyvsp[-5].filename;
  3464.           if_stmt_line = yyvsp[-4].lineno;
  3465.           position_after_white_space (); ;
  3466.     break;}
  3467. case 301:
  3468. #line 1594 "objc-parse.y"
  3469. { stmt_count++;
  3470.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  3471.           /* See comment in `while' alternative, above.  */
  3472.           emit_nop ();
  3473.           expand_start_loop_continue_elsewhere (1);
  3474.           position_after_white_space (); ;
  3475.     break;}
  3476. case 302:
  3477. #line 1601 "objc-parse.y"
  3478. { expand_loop_continue_here (); ;
  3479.     break;}
  3480. case 303:
  3481. #line 1605 "objc-parse.y"
  3482. { yyval.filename = input_filename; ;
  3483.     break;}
  3484. case 304:
  3485. #line 1609 "objc-parse.y"
  3486. { yyval.lineno = lineno; ;
  3487.     break;}
  3488. case 305:
  3489. #line 1614 "objc-parse.y"
  3490. { ;
  3491.     break;}
  3492. case 306:
  3493. #line 1619 "objc-parse.y"
  3494. { ;
  3495.     break;}
  3496. case 307:
  3497. #line 1624 "objc-parse.y"
  3498. { ;
  3499.     break;}
  3500. case 309:
  3501. #line 1630 "objc-parse.y"
  3502. { int next;
  3503.           position_after_white_space ();
  3504.           next = getc (finput);
  3505.           ungetc (next, finput);
  3506.           if (pedantic && next == '}')
  3507.             pedwarn ("ANSI C forbids label at end of compound statement");
  3508.         ;
  3509.     break;}
  3510. case 310:
  3511. #line 1642 "objc-parse.y"
  3512. { stmt_count++; ;
  3513.     break;}
  3514. case 312:
  3515. #line 1645 "objc-parse.y"
  3516. { stmt_count++;
  3517.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3518. /* It appears that this should not be done--that a non-lvalue array
  3519.    shouldn't get an error if the value isn't used.
  3520.    Section 3.2.2.1 says that an array lvalue gets converted to a pointer
  3521.    if it appears as a top-level expression,
  3522.    but says nothing about non-lvalue arrays.  */
  3523. #if 0
  3524.           /* Call default_conversion to get an error
  3525.              on referring to a register array if pedantic.  */
  3526.           if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
  3527.               || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
  3528.             yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
  3529. #endif
  3530.           iterator_expand (yyvsp[-1].ttype);
  3531.           clear_momentary (); ;
  3532.     break;}
  3533. case 313:
  3534. #line 1662 "objc-parse.y"
  3535. { expand_start_else ();
  3536.           yyvsp[-1].itype = stmt_count;
  3537.           position_after_white_space (); ;
  3538.     break;}
  3539. case 314:
  3540. #line 1666 "objc-parse.y"
  3541. { expand_end_cond ();
  3542.           if (extra_warnings && stmt_count == yyvsp[-3].itype)
  3543.             warning ("empty body in an else-statement"); ;
  3544.     break;}
  3545. case 315:
  3546. #line 1670 "objc-parse.y"
  3547. { expand_end_cond ();
  3548.           /* This warning is here instead of in simple_if, because we
  3549.              do not want a warning if an empty if is followed by an
  3550.              else statement.  Increment stmt_count so we don't
  3551.              give a second error if this is a nested `if'.  */
  3552.           if (extra_warnings && stmt_count++ == yyvsp[0].itype)
  3553.             warning_with_file_and_line (if_stmt_file, if_stmt_line,
  3554.                         "empty body in an if-statement"); ;
  3555.     break;}
  3556. case 316:
  3557. #line 1682 "objc-parse.y"
  3558. { expand_end_cond (); ;
  3559.     break;}
  3560. case 317:
  3561. #line 1684 "objc-parse.y"
  3562. { stmt_count++;
  3563.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  3564.           /* The emit_nop used to come before emit_line_note,
  3565.              but that made the nop seem like part of the preceding line.
  3566.              And that was confusing when the preceding line was
  3567.              inside of an if statement and was not really executed.
  3568.              I think it ought to work to put the nop after the line number.
  3569.              We will see.  --rms, July 15, 1991.  */
  3570.           emit_nop (); ;
  3571.     break;}
  3572. case 318:
  3573. #line 1694 "objc-parse.y"
  3574. { /* Don't start the loop till we have succeeded
  3575.              in parsing the end test.  This is to make sure
  3576.              that we end every loop we start.  */
  3577.           expand_start_loop (1);
  3578.           emit_line_note (input_filename, lineno);
  3579.           expand_exit_loop_if_false (NULL_PTR,
  3580.                          truthvalue_conversion (yyvsp[-1].ttype));
  3581.           position_after_white_space (); ;
  3582.     break;}
  3583. case 319:
  3584. #line 1703 "objc-parse.y"
  3585. { expand_end_loop (); ;
  3586.     break;}
  3587. case 320:
  3588. #line 1706 "objc-parse.y"
  3589. { emit_line_note (input_filename, lineno);
  3590.           expand_exit_loop_if_false (NULL_PTR,
  3591.                          truthvalue_conversion (yyvsp[-2].ttype));
  3592.           expand_end_loop ();
  3593.           clear_momentary (); ;
  3594.     break;}
  3595. case 321:
  3596. #line 1713 "objc-parse.y"
  3597. { expand_end_loop ();
  3598.           clear_momentary (); ;
  3599.     break;}
  3600. case 322:
  3601. #line 1717 "objc-parse.y"
  3602. { stmt_count++;
  3603.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3604.           /* See comment in `while' alternative, above.  */
  3605.           emit_nop ();
  3606.           if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
  3607.           /* Next step is to call expand_start_loop_continue_elsewhere,
  3608.              but wait till after we parse the entire for (...).
  3609.              Otherwise, invalid input might cause us to call that
  3610.              fn without calling expand_end_loop.  */
  3611.         ;
  3612.     break;}
  3613. case 323:
  3614. #line 1729 "objc-parse.y"
  3615. { yyvsp[0].lineno = lineno;
  3616.           yyval.filename = input_filename; ;
  3617.     break;}
  3618. case 324:
  3619. #line 1732 "objc-parse.y"
  3620.           /* Start the loop.  Doing this after parsing
  3621.              all the expressions ensures we will end the loop.  */
  3622.           expand_start_loop_continue_elsewhere (1);
  3623.           /* Emit the end-test, with a line number.  */
  3624.           emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
  3625.           if (yyvsp[-4].ttype)
  3626.             expand_exit_loop_if_false (NULL_PTR,
  3627.                            truthvalue_conversion (yyvsp[-4].ttype));
  3628.           /* Don't let the tree nodes for $9 be discarded by
  3629.              clear_momentary during the parsing of the next stmt.  */
  3630.           push_momentary ();
  3631.           yyvsp[-3].lineno = lineno;
  3632.           yyvsp[-2].filename = input_filename;
  3633.           position_after_white_space (); ;
  3634.     break;}
  3635. case 325:
  3636. #line 1748 "objc-parse.y"
  3637. { /* Emit the increment expression, with a line number.  */
  3638.           emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
  3639.           expand_loop_continue_here ();
  3640.           if (yyvsp[-3].ttype)
  3641.             c_expand_expr_stmt (yyvsp[-3].ttype);
  3642.           if (yychar == CONSTANT || yychar == STRING)
  3643.             pop_momentary_nofree ();
  3644.           else
  3645.             pop_momentary ();
  3646.           expand_end_loop (); ;
  3647.     break;}
  3648. case 326:
  3649. #line 1759 "objc-parse.y"
  3650. { stmt_count++;
  3651.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3652.           c_expand_start_case (yyvsp[-1].ttype);
  3653.           /* Don't let the tree nodes for $3 be discarded by
  3654.              clear_momentary during the parsing of the next stmt.  */
  3655.           push_momentary ();
  3656.           position_after_white_space (); ;
  3657.     break;}
  3658. case 327:
  3659. #line 1767 "objc-parse.y"
  3660. { expand_end_case (yyvsp[-3].ttype);
  3661.           if (yychar == CONSTANT || yychar == STRING)
  3662.             pop_momentary_nofree ();
  3663.           else
  3664.             pop_momentary (); ;
  3665.     break;}
  3666. case 328:
  3667. #line 1773 "objc-parse.y"
  3668. { stmt_count++;
  3669.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3670.           if ( ! expand_exit_something ())
  3671.             error ("break statement not within loop or switch"); ;
  3672.     break;}
  3673. case 329:
  3674. #line 1778 "objc-parse.y"
  3675. { stmt_count++;
  3676.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3677.           if (! expand_continue_loop (NULL_PTR))
  3678.             error ("continue statement not within a loop"); ;
  3679.     break;}
  3680. case 330:
  3681. #line 1783 "objc-parse.y"
  3682. { stmt_count++;
  3683.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3684.           c_expand_return (NULL_TREE); ;
  3685.     break;}
  3686. case 331:
  3687. #line 1787 "objc-parse.y"
  3688. { stmt_count++;
  3689.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3690.           c_expand_return (yyvsp[-1].ttype); ;
  3691.     break;}
  3692. case 332:
  3693. #line 1791 "objc-parse.y"
  3694. { stmt_count++;
  3695.           emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
  3696.           STRIP_NOPS (yyvsp[-2].ttype);
  3697.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  3698.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  3699.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  3700.             expand_asm (yyvsp[-2].ttype);
  3701.           else
  3702.             error ("argument of `asm' is not a constant string"); ;
  3703.     break;}
  3704. case 333:
  3705. #line 1802 "objc-parse.y"
  3706. { stmt_count++;
  3707.           emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
  3708.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  3709.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  3710.                      input_filename, lineno); ;
  3711.     break;}
  3712. case 334:
  3713. #line 1809 "objc-parse.y"
  3714. { stmt_count++;
  3715.           emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
  3716.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  3717.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  3718.                      input_filename, lineno); ;
  3719.     break;}
  3720. case 335:
  3721. #line 1817 "objc-parse.y"
  3722. { stmt_count++;
  3723.           emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
  3724.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  3725.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  3726.                      input_filename, lineno); ;
  3727.     break;}
  3728. case 336:
  3729. #line 1823 "objc-parse.y"
  3730. { tree decl;
  3731.           stmt_count++;
  3732.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3733.           decl = lookup_label (yyvsp[-1].ttype);
  3734.           if (decl != 0)
  3735.             {
  3736.               TREE_USED (decl) = 1;
  3737.               expand_goto (decl);
  3738.             }
  3739.         ;
  3740.     break;}
  3741. case 337:
  3742. #line 1834 "objc-parse.y"
  3743. { stmt_count++;
  3744.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3745.           expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
  3746.     break;}
  3747. case 340:
  3748. #line 1847 "objc-parse.y"
  3749. {
  3750.         /* The value returned by this action is  */
  3751.         /*      1 if everything is OK */ 
  3752.         /*      0 in case of error or already bound iterator */
  3753.  
  3754.         yyval.itype = 0;
  3755.         if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
  3756.           error ("invalid `for (ITERATOR)' syntax");
  3757.         else if (! ITERATOR_P (yyvsp[-1].ttype))
  3758.           error ("`%s' is not an iterator",
  3759.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3760.         else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
  3761.           error ("`for (%s)' inside expansion of same iterator",
  3762.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3763.         else
  3764.           {
  3765.         yyval.itype = 1;
  3766.         iterator_for_loop_start (yyvsp[-1].ttype);
  3767.           }
  3768.       ;
  3769.     break;}
  3770. case 341:
  3771. #line 1868 "objc-parse.y"
  3772. {
  3773.         if (yyvsp[-1].itype)
  3774.           iterator_for_loop_end (yyvsp[-3].ttype);
  3775.       ;
  3776.     break;}
  3777. case 342:
  3778. #line 1903 "objc-parse.y"
  3779. { register tree value = check_case_value (yyvsp[-1].ttype);
  3780.           register tree label
  3781.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3782.  
  3783.           stmt_count++;
  3784.  
  3785.           if (value != error_mark_node)
  3786.             {
  3787.               tree duplicate;
  3788.               int success = pushcase (value, convert_and_check,
  3789.                           label, &duplicate);
  3790.               if (success == 1)
  3791.             error ("case label not within a switch statement");
  3792.               else if (success == 2)
  3793.             {
  3794.               error ("duplicate case value");
  3795.               error_with_decl (duplicate, "this is the first entry for that value");
  3796.             }
  3797.               else if (success == 3)
  3798.             warning ("case value out of range");
  3799.               else if (success == 5)
  3800.             error ("case label within scope of cleanup or variable array");
  3801.             }
  3802.           position_after_white_space (); ;
  3803.     break;}
  3804. case 343:
  3805. #line 1928 "objc-parse.y"
  3806. { register tree value1 = check_case_value (yyvsp[-3].ttype);
  3807.           register tree value2 = check_case_value (yyvsp[-1].ttype);
  3808.           register tree label
  3809.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3810.  
  3811.           stmt_count++;
  3812.  
  3813.           if (value1 != error_mark_node && value2 != error_mark_node)
  3814.             {
  3815.               tree duplicate;
  3816.               int success = pushcase_range (value1, value2,
  3817.                             convert_and_check, label,
  3818.                             &duplicate);
  3819.               if (success == 1)
  3820.             error ("case label not within a switch statement");
  3821.               else if (success == 2)
  3822.             {
  3823.               error ("duplicate case value");
  3824.               error_with_decl (duplicate, "this is the first entry for that value");
  3825.             }
  3826.               else if (success == 3)
  3827.             warning ("case value out of range");
  3828.               else if (success == 4)
  3829.             warning ("empty case range");
  3830.               else if (success == 5)
  3831.             error ("case label within scope of cleanup or variable array");
  3832.             }
  3833.           position_after_white_space (); ;
  3834.     break;}
  3835. case 344:
  3836. #line 1957 "objc-parse.y"
  3837. {
  3838.           tree duplicate;
  3839.           register tree label
  3840.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3841.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  3842.           stmt_count++;
  3843.           if (success == 1)
  3844.             error ("default label not within a switch statement");
  3845.           else if (success == 2)
  3846.             {
  3847.               error ("multiple default labels in one switch");
  3848.               error_with_decl (duplicate, "this is the first default label");
  3849.             }
  3850.           position_after_white_space (); ;
  3851.     break;}
  3852. case 345:
  3853. #line 1972 "objc-parse.y"
  3854. { tree label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  3855.           stmt_count++;
  3856.           emit_nop ();
  3857.           if (label)
  3858.             expand_label (label);
  3859.           position_after_white_space (); ;
  3860.     break;}
  3861. case 346:
  3862. #line 1984 "objc-parse.y"
  3863. { emit_line_note (input_filename, lineno);
  3864.           yyval.ttype = NULL_TREE; ;
  3865.     break;}
  3866. case 347:
  3867. #line 1987 "objc-parse.y"
  3868. { emit_line_note (input_filename, lineno); ;
  3869.     break;}
  3870. case 348:
  3871. #line 1992 "objc-parse.y"
  3872. { yyval.ttype = NULL_TREE; ;
  3873.     break;}
  3874. case 350:
  3875. #line 1999 "objc-parse.y"
  3876. { yyval.ttype = NULL_TREE; ;
  3877.     break;}
  3878. case 353:
  3879. #line 2006 "objc-parse.y"
  3880. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3881.     break;}
  3882. case 354:
  3883. #line 2011 "objc-parse.y"
  3884. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3885.     break;}
  3886. case 355:
  3887. #line 2016 "objc-parse.y"
  3888. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
  3889.     break;}
  3890. case 356:
  3891. #line 2018 "objc-parse.y"
  3892. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
  3893.     break;}
  3894. case 357:
  3895. #line 2024 "objc-parse.y"
  3896. { pushlevel (0);
  3897.           clear_parm_order ();
  3898.           declare_parm_level (0); ;
  3899.     break;}
  3900. case 358:
  3901. #line 2028 "objc-parse.y"
  3902. { yyval.ttype = yyvsp[0].ttype;
  3903.           parmlist_tags_warning ();
  3904.           poplevel (0, 0, 0); ;
  3905.     break;}
  3906. case 360:
  3907. #line 2036 "objc-parse.y"
  3908. { tree parm;
  3909.           if (pedantic)
  3910.             pedwarn ("ANSI C forbids forward parameter declarations");
  3911.           /* Mark the forward decls as such.  */
  3912.           for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
  3913.             TREE_ASM_WRITTEN (parm) = 1;
  3914.           clear_parm_order (); ;
  3915.     break;}
  3916. case 361:
  3917. #line 2044 "objc-parse.y"
  3918. { yyval.ttype = yyvsp[0].ttype; ;
  3919.     break;}
  3920. case 362:
  3921. #line 2046 "objc-parse.y"
  3922. { yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
  3923.     break;}
  3924. case 363:
  3925. #line 2052 "objc-parse.y"
  3926. { yyval.ttype = get_parm_info (0); ;
  3927.     break;}
  3928. case 364:
  3929. #line 2054 "objc-parse.y"
  3930. { yyval.ttype = get_parm_info (0);
  3931.           /* Gcc used to allow this as an extension.  However, it does
  3932.              not work for all targets, and thus has been disabled.
  3933.              Also, since func (...) and func () are indistinguishable,
  3934.              it caused problems with the code in expand_builtin which
  3935.              tries to verify that BUILT_IN_NEXT_ARG is being used
  3936.              correctly.  */
  3937.           error ("ANSI C requires a named argument before `...'");
  3938.         ;
  3939.     break;}
  3940. case 365:
  3941. #line 2064 "objc-parse.y"
  3942. { yyval.ttype = get_parm_info (1); ;
  3943.     break;}
  3944. case 366:
  3945. #line 2066 "objc-parse.y"
  3946. { yyval.ttype = get_parm_info (0); ;
  3947.     break;}
  3948. case 367:
  3949. #line 2071 "objc-parse.y"
  3950. { push_parm_decl (yyvsp[0].ttype); ;
  3951.     break;}
  3952. case 368:
  3953. #line 2073 "objc-parse.y"
  3954. { push_parm_decl (yyvsp[0].ttype); ;
  3955.     break;}
  3956. case 369:
  3957. #line 2080 "objc-parse.y"
  3958. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3959.                              yyvsp[-1].ttype),
  3960.                     build_tree_list (prefix_attributes,
  3961.                              yyvsp[0].ttype));
  3962.           current_declspecs = TREE_VALUE (declspec_stack);
  3963.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3964.           declspec_stack = TREE_CHAIN (declspec_stack);
  3965.           resume_momentary (yyvsp[-2].itype); ;
  3966.     break;}
  3967. case 370:
  3968. #line 2089 "objc-parse.y"
  3969. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3970.                              yyvsp[-1].ttype),
  3971.                     build_tree_list (prefix_attributes,
  3972.                              yyvsp[0].ttype)); 
  3973.           current_declspecs = TREE_VALUE (declspec_stack);
  3974.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3975.           declspec_stack = TREE_CHAIN (declspec_stack);
  3976.           resume_momentary (yyvsp[-2].itype); ;
  3977.     break;}
  3978. case 371:
  3979. #line 2098 "objc-parse.y"
  3980. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3981.                              yyvsp[-1].ttype),
  3982.                     build_tree_list (prefix_attributes,
  3983.                              yyvsp[0].ttype));
  3984.           current_declspecs = TREE_VALUE (declspec_stack);
  3985.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3986.           declspec_stack = TREE_CHAIN (declspec_stack);
  3987.           resume_momentary (yyvsp[-2].itype); ;
  3988.     break;}
  3989. case 372:
  3990. #line 2107 "objc-parse.y"
  3991. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3992.                              yyvsp[-1].ttype),
  3993.                     build_tree_list (prefix_attributes,
  3994.                              yyvsp[0].ttype));
  3995.           current_declspecs = TREE_VALUE (declspec_stack);
  3996.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3997.           declspec_stack = TREE_CHAIN (declspec_stack);
  3998.           resume_momentary (yyvsp[-2].itype);  ;
  3999.     break;}
  4000. case 373:
  4001. #line 2117 "objc-parse.y"
  4002. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  4003.                              yyvsp[-1].ttype),
  4004.                     build_tree_list (prefix_attributes,
  4005.                              yyvsp[0].ttype));
  4006.           current_declspecs = TREE_VALUE (declspec_stack);
  4007.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  4008.           declspec_stack = TREE_CHAIN (declspec_stack);
  4009.           resume_momentary (yyvsp[-2].itype);  ;
  4010.     break;}
  4011. case 374:
  4012. #line 2131 "objc-parse.y"
  4013. { pushlevel (0);
  4014.           clear_parm_order ();
  4015.           declare_parm_level (1); ;
  4016.     break;}
  4017. case 375:
  4018. #line 2135 "objc-parse.y"
  4019. { yyval.ttype = yyvsp[0].ttype;
  4020.           parmlist_tags_warning ();
  4021.           poplevel (0, 0, 0); ;
  4022.     break;}
  4023. case 377:
  4024. #line 2143 "objc-parse.y"
  4025. { tree t;
  4026.           for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
  4027.             if (TREE_VALUE (t) == NULL_TREE)
  4028.               error ("`...' in old-style identifier list");
  4029.           yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
  4030.     break;}
  4031. case 378:
  4032. #line 2153 "objc-parse.y"
  4033. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  4034.     break;}
  4035. case 379:
  4036. #line 2155 "objc-parse.y"
  4037. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4038.     break;}
  4039. case 380:
  4040. #line 2161 "objc-parse.y"
  4041. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  4042.     break;}
  4043. case 381:
  4044. #line 2163 "objc-parse.y"
  4045. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4046.     break;}
  4047. case 387:
  4048. #line 2175 "objc-parse.y"
  4049. {
  4050.           if (objc_implementation_context)
  4051.                     {
  4052.               finish_class (objc_implementation_context);
  4053.               objc_ivar_chain = NULL_TREE;
  4054.               objc_implementation_context = NULL_TREE;
  4055.             }
  4056.           else
  4057.             warning ("`@end' must appear in an implementation context");
  4058.         ;
  4059.     break;}
  4060. case 388:
  4061. #line 2190 "objc-parse.y"
  4062. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  4063.     break;}
  4064. case 389:
  4065. #line 2192 "objc-parse.y"
  4066. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4067.     break;}
  4068. case 390:
  4069. #line 2197 "objc-parse.y"
  4070. {
  4071.           objc_declare_class (yyvsp[-1].ttype);
  4072.         ;
  4073.     break;}
  4074. case 391:
  4075. #line 2203 "objc-parse.y"
  4076. {
  4077.           objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
  4078.         ;
  4079.     break;}
  4080. case 392:
  4081. #line 2209 "objc-parse.y"
  4082. {
  4083.           objc_interface_context = objc_ivar_context
  4084.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  4085.                   objc_public_flag = 0;
  4086.         ;
  4087.     break;}
  4088. case 393:
  4089. #line 2215 "objc-parse.y"
  4090. {
  4091.                   continue_class (objc_interface_context);
  4092.         ;
  4093.     break;}
  4094. case 394:
  4095. #line 2220 "objc-parse.y"
  4096. {
  4097.           finish_class (objc_interface_context);
  4098.           objc_interface_context = NULL_TREE;
  4099.         ;
  4100.     break;}
  4101. case 395:
  4102. #line 2226 "objc-parse.y"
  4103. {
  4104.           objc_interface_context
  4105.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-1].ttype, NULL_TREE, yyvsp[0].ttype);
  4106.                   continue_class (objc_interface_context);
  4107.         ;
  4108.     break;}
  4109. case 396:
  4110. #line 2233 "objc-parse.y"
  4111. {
  4112.           finish_class (objc_interface_context);
  4113.           objc_interface_context = NULL_TREE;
  4114.         ;
  4115.     break;}
  4116. case 397:
  4117. #line 2239 "objc-parse.y"
  4118. {
  4119.           objc_interface_context = objc_ivar_context
  4120.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[-1].ttype);
  4121.                   objc_public_flag = 0;
  4122.         ;
  4123.     break;}
  4124. case 398:
  4125. #line 2245 "objc-parse.y"
  4126. {
  4127.                   continue_class (objc_interface_context);
  4128.         ;
  4129.     break;}
  4130. case 399:
  4131. #line 2250 "objc-parse.y"
  4132. {
  4133.           finish_class (objc_interface_context);
  4134.           objc_interface_context = NULL_TREE;
  4135.         ;
  4136.     break;}
  4137. case 400:
  4138. #line 2256 "objc-parse.y"
  4139. {
  4140.           objc_interface_context
  4141.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
  4142.                   continue_class (objc_interface_context);
  4143.         ;
  4144.     break;}
  4145. case 401:
  4146. #line 2263 "objc-parse.y"
  4147. {
  4148.           finish_class (objc_interface_context);
  4149.           objc_interface_context = NULL_TREE;
  4150.         ;
  4151.     break;}
  4152. case 402:
  4153. #line 2269 "objc-parse.y"
  4154. {
  4155.           objc_implementation_context = objc_ivar_context
  4156.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
  4157.                   objc_public_flag = 0;
  4158.         ;
  4159.     break;}
  4160. case 403:
  4161. #line 2275 "objc-parse.y"
  4162. {
  4163.                   objc_ivar_chain
  4164.             = continue_class (objc_implementation_context);
  4165.         ;
  4166.     break;}
  4167. case 404:
  4168. #line 2281 "objc-parse.y"
  4169. {
  4170.           objc_implementation_context
  4171.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[0].ttype, NULL_TREE, NULL_TREE);
  4172.                   objc_ivar_chain
  4173.             = continue_class (objc_implementation_context);
  4174.         ;
  4175.     break;}
  4176. case 405:
  4177. #line 2289 "objc-parse.y"
  4178. {
  4179.           objc_implementation_context = objc_ivar_context
  4180.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
  4181.                   objc_public_flag = 0;
  4182.         ;
  4183.     break;}
  4184. case 406:
  4185. #line 2295 "objc-parse.y"
  4186. {
  4187.                   objc_ivar_chain
  4188.             = continue_class (objc_implementation_context);
  4189.         ;
  4190.     break;}
  4191. case 407:
  4192. #line 2301 "objc-parse.y"
  4193. {
  4194.           objc_implementation_context
  4195.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
  4196.                   objc_ivar_chain
  4197.             = continue_class (objc_implementation_context);
  4198.         ;
  4199.     break;}
  4200. case 408:
  4201. #line 2309 "objc-parse.y"
  4202. {
  4203.           objc_interface_context
  4204.             = start_class (CATEGORY_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
  4205.                   continue_class (objc_interface_context);
  4206.         ;
  4207.     break;}
  4208. case 409:
  4209. #line 2316 "objc-parse.y"
  4210. {
  4211.           finish_class (objc_interface_context);
  4212.           objc_interface_context = NULL_TREE;
  4213.         ;
  4214.     break;}
  4215. case 410:
  4216. #line 2322 "objc-parse.y"
  4217. {
  4218.           objc_implementation_context
  4219.             = start_class (CATEGORY_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
  4220.                   objc_ivar_chain
  4221.             = continue_class (objc_implementation_context);
  4222.         ;
  4223.     break;}
  4224. case 411:
  4225. #line 2332 "objc-parse.y"
  4226. {
  4227.           remember_protocol_qualifiers ();
  4228.           objc_interface_context
  4229.             = start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
  4230.         ;
  4231.     break;}
  4232. case 412:
  4233. #line 2338 "objc-parse.y"
  4234. {
  4235.           forget_protocol_qualifiers();
  4236.           finish_protocol(objc_interface_context);
  4237.           objc_interface_context = NULL_TREE;
  4238.         ;
  4239.     break;}
  4240. case 413:
  4241. #line 2347 "objc-parse.y"
  4242. {
  4243.           yyval.ttype = NULL_TREE;
  4244.         ;
  4245.     break;}
  4246. case 414:
  4247. #line 2351 "objc-parse.y"
  4248. {
  4249.           if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
  4250.             yyval.ttype = yyvsp[-1].ttype;
  4251.           else
  4252.             YYERROR1;
  4253.         ;
  4254.     break;}
  4255. case 417:
  4256. #line 2365 "objc-parse.y"
  4257. { objc_public_flag = 2; ;
  4258.     break;}
  4259. case 418:
  4260. #line 2366 "objc-parse.y"
  4261. { objc_public_flag = 0; ;
  4262.     break;}
  4263. case 419:
  4264. #line 2367 "objc-parse.y"
  4265. { objc_public_flag = 1; ;
  4266.     break;}
  4267. case 420:
  4268. #line 2372 "objc-parse.y"
  4269. {
  4270.                   yyval.ttype = NULL_TREE;
  4271.                 ;
  4272.     break;}
  4273. case 422:
  4274. #line 2377 "objc-parse.y"
  4275. {
  4276.                   if (pedantic)
  4277.             pedwarn ("extra semicolon in struct or union specified");
  4278.                 ;
  4279.     break;}
  4280. case 423:
  4281. #line 2395 "objc-parse.y"
  4282. { yyval.ttype = yyvsp[0].ttype;
  4283.           current_declspecs = TREE_VALUE (declspec_stack);
  4284.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  4285.           declspec_stack = TREE_CHAIN (declspec_stack);
  4286.           resume_momentary (yyvsp[-1].itype); ;
  4287.     break;}
  4288. case 424:
  4289. #line 2401 "objc-parse.y"
  4290. { yyval.ttype = yyvsp[0].ttype;
  4291.           current_declspecs = TREE_VALUE (declspec_stack);
  4292.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  4293.           declspec_stack = TREE_CHAIN (declspec_stack);
  4294.           resume_momentary (yyvsp[-1].itype); ;
  4295.     break;}
  4296. case 425:
  4297. #line 2407 "objc-parse.y"
  4298. { yyval.ttype = NULL_TREE; ;
  4299.     break;}
  4300. case 426:
  4301. #line 2412 "objc-parse.y"
  4302. { yyval.ttype = NULL_TREE; ;
  4303.     break;}
  4304. case 429:
  4305. #line 2419 "objc-parse.y"
  4306. {
  4307.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4308.                           objc_public_flag,
  4309.                           yyvsp[0].ttype, current_declspecs,
  4310.                           NULL_TREE);
  4311.                 ;
  4312.     break;}
  4313. case 430:
  4314. #line 2426 "objc-parse.y"
  4315. {
  4316.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4317.                           objc_public_flag,
  4318.                           yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
  4319.                 ;
  4320.     break;}
  4321. case 431:
  4322. #line 2432 "objc-parse.y"
  4323. {
  4324.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4325.                           objc_public_flag,
  4326.                           NULL_TREE,
  4327.                           current_declspecs, yyvsp[0].ttype);
  4328.                 ;
  4329.     break;}
  4330. case 432:
  4331. #line 2442 "objc-parse.y"
  4332. {
  4333.           remember_protocol_qualifiers ();
  4334.           if (objc_implementation_context)
  4335.             objc_inherit_code = CLASS_METHOD_DECL;
  4336.                   else
  4337.             fatal ("method definition not in class context");
  4338.         ;
  4339.     break;}
  4340. case 433:
  4341. #line 2450 "objc-parse.y"
  4342. {
  4343.           forget_protocol_qualifiers ();
  4344.           add_class_method (objc_implementation_context, yyvsp[0].ttype);
  4345.           start_method_def (yyvsp[0].ttype);
  4346.           objc_method_context = yyvsp[0].ttype;
  4347.         ;
  4348.     break;}
  4349. case 434:
  4350. #line 2457 "objc-parse.y"
  4351. {
  4352.           continue_method_def ();
  4353.         ;
  4354.     break;}
  4355. case 435:
  4356. #line 2461 "objc-parse.y"
  4357. {
  4358.           finish_method_def ();
  4359.           objc_method_context = NULL_TREE;
  4360.         ;
  4361.     break;}
  4362. case 436:
  4363. #line 2467 "objc-parse.y"
  4364. {
  4365.           remember_protocol_qualifiers ();
  4366.           if (objc_implementation_context)
  4367.             objc_inherit_code = INSTANCE_METHOD_DECL;
  4368.                   else
  4369.             fatal ("method definition not in class context");
  4370.         ;
  4371.     break;}
  4372. case 437:
  4373. #line 2475 "objc-parse.y"
  4374. {
  4375.           forget_protocol_qualifiers ();
  4376.           add_instance_method (objc_implementation_context, yyvsp[0].ttype);
  4377.           start_method_def (yyvsp[0].ttype);
  4378.           objc_method_context = yyvsp[0].ttype;
  4379.         ;
  4380.     break;}
  4381. case 438:
  4382. #line 2482 "objc-parse.y"
  4383. {
  4384.           continue_method_def ();
  4385.         ;
  4386.     break;}
  4387. case 439:
  4388. #line 2486 "objc-parse.y"
  4389. {
  4390.           finish_method_def ();
  4391.           objc_method_context = NULL_TREE;
  4392.         ;
  4393.     break;}
  4394. case 441:
  4395. #line 2498 "objc-parse.y"
  4396. {yyval.ttype = NULL_TREE; ;
  4397.     break;}
  4398. case 446:
  4399. #line 2505 "objc-parse.y"
  4400. {yyval.ttype = NULL_TREE; ;
  4401.     break;}
  4402. case 450:
  4403. #line 2515 "objc-parse.y"
  4404. {
  4405.           objc_inherit_code = CLASS_METHOD_DECL;
  4406.         ;
  4407.     break;}
  4408. case 451:
  4409. #line 2519 "objc-parse.y"
  4410. {
  4411.           add_class_method (objc_interface_context, yyvsp[0].ttype);
  4412.         ;
  4413.     break;}
  4414. case 453:
  4415. #line 2525 "objc-parse.y"
  4416. {
  4417.           objc_inherit_code = INSTANCE_METHOD_DECL;
  4418.         ;
  4419.     break;}
  4420. case 454:
  4421. #line 2529 "objc-parse.y"
  4422. {
  4423.           add_instance_method (objc_interface_context, yyvsp[0].ttype);
  4424.         ;
  4425.     break;}
  4426. case 456:
  4427. #line 2537 "objc-parse.y"
  4428. {
  4429.           yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
  4430.         ;
  4431.     break;}
  4432. case 457:
  4433. #line 2542 "objc-parse.y"
  4434. {
  4435.           yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  4436.         ;
  4437.     break;}
  4438. case 458:
  4439. #line 2547 "objc-parse.y"
  4440. {
  4441.           yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
  4442.         ;
  4443.     break;}
  4444. case 459:
  4445. #line 2552 "objc-parse.y"
  4446. {
  4447.           yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
  4448.         ;
  4449.     break;}
  4450. case 468:
  4451. #line 2582 "objc-parse.y"
  4452. { current_declspecs = TREE_VALUE (declspec_stack);
  4453.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  4454.           declspec_stack = TREE_CHAIN (declspec_stack);
  4455.           resume_momentary (yyvsp[-2].itype); ;
  4456.     break;}
  4457. case 469:
  4458. #line 2587 "objc-parse.y"
  4459. { shadow_tag (yyvsp[-1].ttype); ;
  4460.     break;}
  4461. case 470:
  4462. #line 2589 "objc-parse.y"
  4463. { pedwarn ("empty declaration"); ;
  4464.     break;}
  4465. case 471:
  4466. #line 2594 "objc-parse.y"
  4467. { push_parm_decl (yyvsp[0].ttype); ;
  4468.     break;}
  4469. case 472:
  4470. #line 2596 "objc-parse.y"
  4471. { push_parm_decl (yyvsp[0].ttype); ;
  4472.     break;}
  4473. case 473:
  4474. #line 2604 "objc-parse.y"
  4475. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  4476.                              yyvsp[-1].ttype),
  4477.                     build_tree_list (prefix_attributes,
  4478.                              yyvsp[0].ttype)); ;
  4479.     break;}
  4480. case 474:
  4481. #line 2609 "objc-parse.y"
  4482. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  4483.                              yyvsp[-1].ttype),
  4484.                     build_tree_list (prefix_attributes,
  4485.                              yyvsp[0].ttype)); ;
  4486.     break;}
  4487. case 475:
  4488. #line 2614 "objc-parse.y"
  4489. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  4490.                              yyvsp[-1].ttype),
  4491.                     build_tree_list (prefix_attributes,
  4492.                              yyvsp[0].ttype)); ;
  4493.     break;}
  4494. case 476:
  4495. #line 2622 "objc-parse.y"
  4496. {
  4497.               yyval.ttype = NULL_TREE;
  4498.         ;
  4499.     break;}
  4500. case 477:
  4501. #line 2626 "objc-parse.y"
  4502. {
  4503.           /* oh what a kludge! */
  4504.           yyval.ttype = (tree)1;
  4505.         ;
  4506.     break;}
  4507. case 478:
  4508. #line 2631 "objc-parse.y"
  4509. {
  4510.           pushlevel (0);
  4511.         ;
  4512.     break;}
  4513. case 479:
  4514. #line 2635 "objc-parse.y"
  4515. {
  4516.             /* returns a tree list node generated by get_parm_info */
  4517.           yyval.ttype = yyvsp[0].ttype;
  4518.           poplevel (0, 0, 0);
  4519.         ;
  4520.     break;}
  4521. case 482:
  4522. #line 2650 "objc-parse.y"
  4523. {
  4524.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4525.         ;
  4526.     break;}
  4527. case 487:
  4528. #line 2663 "objc-parse.y"
  4529. { yyval.ttype = get_identifier (token_buffer); ;
  4530.     break;}
  4531. case 488:
  4532. #line 2664 "objc-parse.y"
  4533. { yyval.ttype = get_identifier (token_buffer); ;
  4534.     break;}
  4535. case 489:
  4536. #line 2665 "objc-parse.y"
  4537. { yyval.ttype = get_identifier (token_buffer); ;
  4538.     break;}
  4539. case 490:
  4540. #line 2666 "objc-parse.y"
  4541. { yyval.ttype = get_identifier (token_buffer); ;
  4542.     break;}
  4543. case 491:
  4544. #line 2667 "objc-parse.y"
  4545. { yyval.ttype = get_identifier (token_buffer); ;
  4546.     break;}
  4547. case 492:
  4548. #line 2668 "objc-parse.y"
  4549. { yyval.ttype = get_identifier (token_buffer); ;
  4550.     break;}
  4551. case 493:
  4552. #line 2669 "objc-parse.y"
  4553. { yyval.ttype = get_identifier (token_buffer); ;
  4554.     break;}
  4555. case 494:
  4556. #line 2670 "objc-parse.y"
  4557. { yyval.ttype = get_identifier (token_buffer); ;
  4558.     break;}
  4559. case 495:
  4560. #line 2671 "objc-parse.y"
  4561. { yyval.ttype = get_identifier (token_buffer); ;
  4562.     break;}
  4563. case 496:
  4564. #line 2672 "objc-parse.y"
  4565. { yyval.ttype = get_identifier (token_buffer); ;
  4566.     break;}
  4567. case 497:
  4568. #line 2673 "objc-parse.y"
  4569. { yyval.ttype = get_identifier (token_buffer); ;
  4570.     break;}
  4571. case 498:
  4572. #line 2674 "objc-parse.y"
  4573. { yyval.ttype = get_identifier (token_buffer); ;
  4574.     break;}
  4575. case 499:
  4576. #line 2675 "objc-parse.y"
  4577. { yyval.ttype = get_identifier (token_buffer); ;
  4578.     break;}
  4579. case 500:
  4580. #line 2676 "objc-parse.y"
  4581. { yyval.ttype = get_identifier (token_buffer); ;
  4582.     break;}
  4583. case 501:
  4584. #line 2677 "objc-parse.y"
  4585. { yyval.ttype = get_identifier (token_buffer); ;
  4586.     break;}
  4587. case 502:
  4588. #line 2678 "objc-parse.y"
  4589. { yyval.ttype = get_identifier (token_buffer); ;
  4590.     break;}
  4591. case 503:
  4592. #line 2679 "objc-parse.y"
  4593. { yyval.ttype = get_identifier (token_buffer); ;
  4594.     break;}
  4595. case 504:
  4596. #line 2680 "objc-parse.y"
  4597. { yyval.ttype = get_identifier (token_buffer); ;
  4598.     break;}
  4599. case 505:
  4600. #line 2681 "objc-parse.y"
  4601. { yyval.ttype = get_identifier (token_buffer); ;
  4602.     break;}
  4603. case 508:
  4604. #line 2687 "objc-parse.y"
  4605. {
  4606.           yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
  4607.         ;
  4608.     break;}
  4609. case 509:
  4610. #line 2692 "objc-parse.y"
  4611. {
  4612.           yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
  4613.         ;
  4614.     break;}
  4615. case 510:
  4616. #line 2697 "objc-parse.y"
  4617. {
  4618.           yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
  4619.         ;
  4620.     break;}
  4621. case 511:
  4622. #line 2702 "objc-parse.y"
  4623. {
  4624.           yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
  4625.         ;
  4626.     break;}
  4627. case 515:
  4628. #line 2715 "objc-parse.y"
  4629. {
  4630.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4631.         ;
  4632.     break;}
  4633. case 516:
  4634. #line 2723 "objc-parse.y"
  4635. {
  4636.           if (TREE_CHAIN (yyvsp[0].ttype) == NULL_TREE)
  4637.             /* just return the expr., remove a level of indirection */
  4638.             yyval.ttype = TREE_VALUE (yyvsp[0].ttype);
  4639.                   else
  4640.             /* we have a comma expr., we will collapse later */
  4641.             yyval.ttype = yyvsp[0].ttype;
  4642.         ;
  4643.     break;}
  4644. case 517:
  4645. #line 2735 "objc-parse.y"
  4646. {
  4647.           yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
  4648.         ;
  4649.     break;}
  4650. case 518:
  4651. #line 2739 "objc-parse.y"
  4652. {
  4653.           yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
  4654.         ;
  4655.     break;}
  4656. case 520:
  4657. #line 2747 "objc-parse.y"
  4658. {
  4659.           yyval.ttype = get_class_reference (yyvsp[0].ttype);
  4660.         ;
  4661.     break;}
  4662. case 521:
  4663. #line 2754 "objc-parse.y"
  4664. { objc_receiver_context = 1; ;
  4665.     break;}
  4666. case 522:
  4667. #line 2756 "objc-parse.y"
  4668. { objc_receiver_context = 0; ;
  4669.     break;}
  4670. case 523:
  4671. #line 2758 "objc-parse.y"
  4672. {
  4673.           yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
  4674.         ;
  4675.     break;}
  4676. case 527:
  4677. #line 2771 "objc-parse.y"
  4678. {
  4679.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4680.         ;
  4681.     break;}
  4682. case 528:
  4683. #line 2778 "objc-parse.y"
  4684. {
  4685.           yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
  4686.         ;
  4687.     break;}
  4688. case 529:
  4689. #line 2782 "objc-parse.y"
  4690. {
  4691.           yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
  4692.         ;
  4693.     break;}
  4694. case 530:
  4695. #line 2789 "objc-parse.y"
  4696. {
  4697.           yyval.ttype = yyvsp[-1].ttype;
  4698.         ;
  4699.     break;}
  4700. case 531:
  4701. #line 2796 "objc-parse.y"
  4702. {
  4703.           yyval.ttype = yyvsp[-1].ttype;
  4704.         ;
  4705.     break;}
  4706. case 532:
  4707. #line 2805 "objc-parse.y"
  4708. {
  4709.           yyval.ttype = groktypename (yyvsp[-1].ttype);
  4710.         ;
  4711.     break;}
  4712. }
  4713.    /* the action file gets copied in in place of this dollarsign */
  4714. #line 480 "/usr/local/lib/bison.simple"
  4715.  
  4716.   yyvsp -= yylen;
  4717.   yyssp -= yylen;
  4718. #ifdef YYLSP_NEEDED
  4719.   yylsp -= yylen;
  4720. #endif
  4721.  
  4722. #if YYDEBUG != 0
  4723.   if (yydebug)
  4724.     {
  4725.       short *ssp1 = yyss - 1;
  4726.       fprintf (stderr, "state stack now");
  4727.       while (ssp1 != yyssp)
  4728.     fprintf (stderr, " %d", *++ssp1);
  4729.       fprintf (stderr, "\n");
  4730.     }
  4731. #endif
  4732.  
  4733.   *++yyvsp = yyval;
  4734.  
  4735. #ifdef YYLSP_NEEDED
  4736.   yylsp++;
  4737.   if (yylen == 0)
  4738.     {
  4739.       yylsp->first_line = yylloc.first_line;
  4740.       yylsp->first_column = yylloc.first_column;
  4741.       yylsp->last_line = (yylsp-1)->last_line;
  4742.       yylsp->last_column = (yylsp-1)->last_column;
  4743.       yylsp->text = 0;
  4744.     }
  4745.   else
  4746.     {
  4747.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  4748.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  4749.     }
  4750. #endif
  4751.  
  4752.   /* Now "shift" the result of the reduction.
  4753.      Determine what state that goes to,
  4754.      based on the state we popped back to
  4755.      and the rule number reduced by.  */
  4756.  
  4757.   yyn = yyr1[yyn];
  4758.  
  4759.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  4760.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  4761.     yystate = yytable[yystate];
  4762.   else
  4763.     yystate = yydefgoto[yyn - YYNTBASE];
  4764.  
  4765.   goto yynewstate;
  4766.  
  4767. yyerrlab:   /* here on detecting error */
  4768.  
  4769.   if (! yyerrstatus)
  4770.     /* If not already recovering from an error, report this error.  */
  4771.     {
  4772.       ++yynerrs;
  4773.  
  4774. #ifdef YYERROR_VERBOSE
  4775.       yyn = yypact[yystate];
  4776.  
  4777.       if (yyn > YYFLAG && yyn < YYLAST)
  4778.     {
  4779.       int size = 0;
  4780.       char *msg;
  4781.       int x, count;
  4782.  
  4783.       count = 0;
  4784.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  4785.       for (x = (yyn < 0 ? -yyn : 0);
  4786.            x < (sizeof(yytname) / sizeof(char *)); x++)
  4787.         if (yycheck[x + yyn] == x)
  4788.           size += strlen(yytname[x]) + 15, count++;
  4789.       msg = (char *) malloc(size + 15);
  4790.       if (msg != 0)
  4791.         {
  4792.           strcpy(msg, "parse error");
  4793.  
  4794.           if (count < 5)
  4795.         {
  4796.           count = 0;
  4797.           for (x = (yyn < 0 ? -yyn : 0);
  4798.                x < (sizeof(yytname) / sizeof(char *)); x++)
  4799.             if (yycheck[x + yyn] == x)
  4800.               {
  4801.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  4802.             strcat(msg, yytname[x]);
  4803.             strcat(msg, "'");
  4804.             count++;
  4805.               }
  4806.         }
  4807.           yyerror(msg);
  4808.           free(msg);
  4809.         }
  4810.       else
  4811.         yyerror ("parse error; also virtual memory exceeded");
  4812.     }
  4813.       else
  4814. #endif /* YYERROR_VERBOSE */
  4815.     yyerror("parse error");
  4816.     }
  4817.  
  4818.   goto yyerrlab1;
  4819. yyerrlab1:   /* here on error raised explicitly by an action */
  4820.  
  4821.   if (yyerrstatus == 3)
  4822.     {
  4823.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  4824.  
  4825.       /* return failure if at end of input */
  4826.       if (yychar == YYEOF)
  4827.     YYABORT;
  4828.  
  4829. #if YYDEBUG != 0
  4830.       if (yydebug)
  4831.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  4832. #endif
  4833.  
  4834.       yychar = YYEMPTY;
  4835.     }
  4836.  
  4837.   /* Else will try to reuse lookahead token
  4838.      after shifting the error token.  */
  4839.  
  4840.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  4841.  
  4842.   goto yyerrhandle;
  4843.  
  4844. yyerrdefault:  /* current state does not do anything special for the error token. */
  4845.  
  4846. #if 0
  4847.   /* This is wrong; only states that explicitly want error tokens
  4848.      should shift them.  */
  4849.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  4850.   if (yyn) goto yydefault;
  4851. #endif
  4852.  
  4853. yyerrpop:   /* pop the current state because it cannot handle the error token */
  4854.  
  4855.   if (yyssp == yyss) YYABORT;
  4856.   yyvsp--;
  4857.   yystate = *--yyssp;
  4858. #ifdef YYLSP_NEEDED
  4859.   yylsp--;
  4860. #endif
  4861.  
  4862. #if YYDEBUG != 0
  4863.   if (yydebug)
  4864.     {
  4865.       short *ssp1 = yyss - 1;
  4866.       fprintf (stderr, "Error: state stack now");
  4867.       while (ssp1 != yyssp)
  4868.     fprintf (stderr, " %d", *++ssp1);
  4869.       fprintf (stderr, "\n");
  4870.     }
  4871. #endif
  4872.  
  4873. yyerrhandle:
  4874.  
  4875.   yyn = yypact[yystate];
  4876.   if (yyn == YYFLAG)
  4877.     goto yyerrdefault;
  4878.  
  4879.   yyn += YYTERROR;
  4880.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  4881.     goto yyerrdefault;
  4882.  
  4883.   yyn = yytable[yyn];
  4884.   if (yyn < 0)
  4885.     {
  4886.       if (yyn == YYFLAG)
  4887.     goto yyerrpop;
  4888.       yyn = -yyn;
  4889.       goto yyreduce;
  4890.     }
  4891.   else if (yyn == 0)
  4892.     goto yyerrpop;
  4893.  
  4894.   if (yyn == YYFINAL)
  4895.     YYACCEPT;
  4896.  
  4897. #if YYDEBUG != 0
  4898.   if (yydebug)
  4899.     fprintf(stderr, "Shifting error token, ");
  4900. #endif
  4901.  
  4902.   *++yyvsp = yylval;
  4903. #ifdef YYLSP_NEEDED
  4904.   *++yylsp = yylloc;
  4905. #endif
  4906.  
  4907.   yystate = yyn;
  4908.   goto yynewstate;
  4909. }
  4910. #line 2810 "objc-parse.y"
  4911.  
  4912.